| Index: src/ia32/macro-assembler-ia32.cc
|
| diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc
|
| index a68cc130092fc68362301f75c87cc72fb9ff04eb..b3d440578333b9ef5dc7c4b000349d0cbc740852 100644
|
| --- a/src/ia32/macro-assembler-ia32.cc
|
| +++ b/src/ia32/macro-assembler-ia32.cc
|
| @@ -1768,13 +1768,13 @@ void MacroAssembler::InitializeFieldsWithFiller(Register current_address,
|
| Register end_address,
|
| Register filler) {
|
| Label loop, entry;
|
| - jmp(&entry);
|
| + jmp(&entry, Label::kNear);
|
| bind(&loop);
|
| mov(Operand(current_address, 0), filler);
|
| add(current_address, Immediate(kPointerSize));
|
| bind(&entry);
|
| cmp(current_address, end_address);
|
| - j(below, &loop);
|
| + j(below, &loop, Label::kNear);
|
| }
|
|
|
|
|
| @@ -1796,9 +1796,9 @@ void MacroAssembler::NegativeZeroTest(Register result,
|
| Label* then_label) {
|
| Label ok;
|
| test(result, result);
|
| - j(not_zero, &ok);
|
| + j(not_zero, &ok, Label::kNear);
|
| test(op, op);
|
| - j(sign, then_label);
|
| + j(sign, then_label, Label::kNear);
|
| bind(&ok);
|
| }
|
|
|
| @@ -1810,10 +1810,10 @@ void MacroAssembler::NegativeZeroTest(Register result,
|
| Label* then_label) {
|
| Label ok;
|
| test(result, result);
|
| - j(not_zero, &ok);
|
| + j(not_zero, &ok, Label::kNear);
|
| mov(scratch, op1);
|
| or_(scratch, op2);
|
| - j(sign, then_label);
|
| + j(sign, then_label, Label::kNear);
|
| bind(&ok);
|
| }
|
|
|
|
|