| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 0b671d2942f42824d6d9e9b3ffb3b8b3c9abf731..77e8432645a5b869617c0bc3237addae8c271af7 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -2454,7 +2454,7 @@ void FloatingPointHelper::LoadUnknownsAsIntegers(MacroAssembler* masm,
|
| __ JumpIfNotSmi(edx, &arg1_is_object, Label::kNear);
|
|
|
| __ SmiUntag(edx);
|
| - __ jmp(&load_arg2, Label::kNear);
|
| + __ jmp(&load_arg2);
|
|
|
| // If the argument is undefined it converts to zero (ECMA-262, section 9.5).
|
| __ bind(&check_undefined_arg1);
|
| @@ -2462,7 +2462,7 @@ void FloatingPointHelper::LoadUnknownsAsIntegers(MacroAssembler* masm,
|
| __ cmp(edx, factory->undefined_value());
|
| __ j(not_equal, conversion_failure);
|
| __ mov(edx, Immediate(0));
|
| - __ jmp(&load_arg2, Label::kNear);
|
| + __ jmp(&load_arg2);
|
|
|
| __ bind(&arg1_is_object);
|
| __ mov(ebx, FieldOperand(edx, HeapObject::kMapOffset));
|
| @@ -2481,14 +2481,14 @@ void FloatingPointHelper::LoadUnknownsAsIntegers(MacroAssembler* masm,
|
|
|
| __ SmiUntag(eax);
|
| __ mov(ecx, eax);
|
| - __ jmp(&done, Label::kNear);
|
| + __ jmp(&done);
|
|
|
| // If the argument is undefined it converts to zero (ECMA-262, section 9.5).
|
| __ bind(&check_undefined_arg2);
|
| __ cmp(eax, factory->undefined_value());
|
| __ j(not_equal, conversion_failure);
|
| __ mov(ecx, Immediate(0));
|
| - __ jmp(&done, Label::kNear);
|
| + __ jmp(&done);
|
|
|
| __ bind(&arg2_is_object);
|
| __ mov(ebx, FieldOperand(eax, HeapObject::kMapOffset));
|
|
|