mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
isMarkedForSpill() should be const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7155 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
627eb31cd7
commit
24d0410db0
@ -101,7 +101,7 @@ public:
|
||||
|
||||
inline void markForSpill() { mustSpill = true; }
|
||||
|
||||
inline bool isMarkedForSpill() { return mustSpill; }
|
||||
inline bool isMarkedForSpill() const { return mustSpill; }
|
||||
|
||||
inline void setSpillOffFromFP(int StackOffset) {
|
||||
assert(mustSpill && "This LR is not spilled");
|
||||
|
@ -101,7 +101,7 @@ public:
|
||||
|
||||
inline void markForSpill() { mustSpill = true; }
|
||||
|
||||
inline bool isMarkedForSpill() { return mustSpill; }
|
||||
inline bool isMarkedForSpill() const { return mustSpill; }
|
||||
|
||||
inline void setSpillOffFromFP(int StackOffset) {
|
||||
assert(mustSpill && "This LR is not spilled");
|
||||
|
Loading…
Reference in New Issue
Block a user