Bug 1141865 - Followup followup: Fix the WIN64 build on a CLOSED TREE. (rs=shu)

This commit is contained in:
Eric Faust 2015-06-01 17:00:25 -07:00
parent 77263e9566
commit 0b8583211b

View File

@ -624,6 +624,11 @@ class MacroAssemblerX86Shared : public Assembler
test32(Operand(address), imm);
j(cond, label);
}
void branchTest32(Condition cond, const Operand& lhs, Imm32 imm, Label* label) {
MOZ_ASSERT(cond == Zero || cond == NonZero || cond == Signed || cond == NotSigned);
test32(lhs, imm);
j(cond, label);
}
void jump(Label* label) {
jmp(label);