Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index 621b3519ea1e0b7ddc40856f2832632a0549a4aa..79f75fadf21d1a982e55502bd87c01f649e4edce 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -1447,7 +1447,7 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) { |
FrameScope scope(masm, StackFrame::INTERNAL); |
__ Push(edx); |
__ Push(eax); |
- __ 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); |