| Index: src/x64/code-stubs-x64.cc
|
| diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc
|
| index d879c7096149b9bac17214a9acd5acd65be83a46..3dd2f45cbcc15c7fe858bbe870a582a98fa49c30 100644
|
| --- a/src/x64/code-stubs-x64.cc
|
| +++ b/src/x64/code-stubs-x64.cc
|
| @@ -1325,7 +1325,7 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) {
|
| FrameScope scope(masm, StackFrame::INTERNAL);
|
| __ Push(rdx);
|
| __ Push(rax);
|
| - __ CallRuntime(strict() ? Runtime::kStrictEquals : Runtime::kEquals);
|
| + __ CallRuntime(strict() ? Runtime::kStrictEqual : Runtime::kEqual);
|
| }
|
| // Turn true into 0 and false into some non-zero value.
|
| STATIC_ASSERT(EQUAL == 0);
|
|
|