| Index: src/x87/macro-assembler-x87.h
|
| diff --git a/src/x87/macro-assembler-x87.h b/src/x87/macro-assembler-x87.h
|
| index ecb40eea311c564458c07bd4e16d2c792155bb74..59e2bb768ac9298d4bc5531b8144cc874582ad34 100644
|
| --- a/src/x87/macro-assembler-x87.h
|
| +++ b/src/x87/macro-assembler-x87.h
|
| @@ -81,13 +81,13 @@ class MacroAssembler: public Assembler {
|
|
|
| // Compare the object in a register to a value and jump if they are equal.
|
| void JumpIfRoot(Register with, Heap::RootListIndex index, Label* if_equal,
|
| - Label::Distance if_equal_distance = Label::kNear) {
|
| + Label::Distance if_equal_distance = Label::kFar) {
|
| CompareRoot(with, index);
|
| j(equal, if_equal, if_equal_distance);
|
| }
|
| void JumpIfRoot(const Operand& with, Heap::RootListIndex index,
|
| Label* if_equal,
|
| - Label::Distance if_equal_distance = Label::kNear) {
|
| + Label::Distance if_equal_distance = Label::kFar) {
|
| CompareRoot(with, index);
|
| j(equal, if_equal, if_equal_distance);
|
| }
|
| @@ -95,13 +95,13 @@ class MacroAssembler: public Assembler {
|
| // Compare the object in a register to a value and jump if they are not equal.
|
| void JumpIfNotRoot(Register with, Heap::RootListIndex index,
|
| Label* if_not_equal,
|
| - Label::Distance if_not_equal_distance = Label::kNear) {
|
| + Label::Distance if_not_equal_distance = Label::kFar) {
|
| CompareRoot(with, index);
|
| j(not_equal, if_not_equal, if_not_equal_distance);
|
| }
|
| void JumpIfNotRoot(const Operand& with, Heap::RootListIndex index,
|
| Label* if_not_equal,
|
| - Label::Distance if_not_equal_distance = Label::kNear) {
|
| + Label::Distance if_not_equal_distance = Label::kFar) {
|
| CompareRoot(with, index);
|
| j(not_equal, if_not_equal, if_not_equal_distance);
|
| }
|
|
|