mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 18:08:58 +00:00
Bug 1141865 - Followup followup: Fix the WIN64 build on a CLOSED TREE. (rs=shu)
This commit is contained in:
parent
77263e9566
commit
0b8583211b
@ -624,6 +624,11 @@ class MacroAssemblerX86Shared : public Assembler
|
|||||||
test32(Operand(address), imm);
|
test32(Operand(address), imm);
|
||||||
j(cond, label);
|
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) {
|
void jump(Label* label) {
|
||||||
jmp(label);
|
jmp(label);
|
||||||
|
Loading…
Reference in New Issue
Block a user