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
Родитель 30d92d565d
Коммит f842d85d8c
2 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

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