Fix compile breakage on optimized builds caused by my last commit.

This commit is contained in:
Nicholas Nethercote 2009-07-07 09:49:55 +10:00
parent 0123dd4b1d
commit 42b4799749
2 changed files with 0 additions and 4 deletions

View File

@ -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();

View File

@ -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;