mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
Fix compile breakage on optimized builds caused by my last commit.
This commit is contained in:
parent
0123dd4b1d
commit
42b4799749
@ -424,7 +424,6 @@ namespace nanojit
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(_DEBUG)
|
||||
bool LIns::isLInsOp0() const {
|
||||
NanoAssert(LRK_None != repKinds[opcode()]);
|
||||
return LRK_Op0 == repKinds[opcode()];
|
||||
@ -474,7 +473,6 @@ namespace nanojit
|
||||
NanoAssert(LRK_None != repKinds[opcode()]);
|
||||
return LRK_I64 == repKinds[opcode()];
|
||||
}
|
||||
#endif // defined(_DEBUG)
|
||||
|
||||
bool LIns::isCmp() const {
|
||||
LOpcode op = opcode();
|
||||
|
@ -629,7 +629,6 @@ namespace nanojit
|
||||
bool isCse() const;
|
||||
bool isRet() const { return nanojit::isRetOpcode(opcode()); }
|
||||
bool isop(LOpcode o) const { return opcode() == o; }
|
||||
#if defined(_DEBUG)
|
||||
// isLInsXYZ() returns true if the instruction has the LInsXYZ form.
|
||||
// Note that there is some overlap with other predicates, eg.
|
||||
// isStore()==isLInsSti(), isCall()==isLInsC(), but that's ok; these
|
||||
@ -646,7 +645,6 @@ namespace nanojit
|
||||
bool isLInsP() const;
|
||||
bool isLInsI() const;
|
||||
bool isLInsI64() const;
|
||||
#endif
|
||||
bool isQuad() const;
|
||||
bool isCond() const;
|
||||
bool isFloat() const;
|
||||
|
Loading…
Reference in New Issue
Block a user