Bug 543803 - Fix unused-variable warnings in Release ARM builds (r=rreitmai)

--HG--
extra : convert_revision : de2889d43d17c9ccc659c509dcb0c1749111d336
This commit is contained in:
Steven Johnson 2010-02-02 12:37:59 -08:00
Родитель 344df5591b
Коммит b7b00c3b01
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -2634,13 +2634,12 @@ Assembler::asm_load32(LInsp ins)
void
Assembler::asm_cmov(LInsp ins)
{
LOpcode op = ins->opcode();
LIns* condval = ins->oprnd1();
LIns* iftrue = ins->oprnd2();
LIns* iffalse = ins->oprnd3();
NanoAssert(condval->isCmp());
NanoAssert(op == LIR_cmov && iftrue->isI32() && iffalse->isI32());
NanoAssert(ins->opcode() == LIR_cmov && iftrue->isI32() && iffalse->isI32());
const Register rr = deprecated_prepResultReg(ins, GpRegs);