зеркало из https://github.com/mozilla/pjs.git
Fix compile breakage on optimized builds caused by my last commit.
This commit is contained in:
Родитель
30d92d565d
Коммит
f842d85d8c
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче