Index: src/ia32/stub-cache-ia32.cc |
diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc |
index b839333288c2c2f336ae44df284a2c4ed8c6613e..40144208f67926866105d8e668ac75a17196175e 100644 |
--- a/src/ia32/stub-cache-ia32.cc |
+++ b/src/ia32/stub-cache-ia32.cc |
@@ -3211,11 +3211,11 @@ void KeyedLoadStubCompiler::GenerateLoadDictionaryElement( |
// -- edx : receiver |
// -- esp[0] : return address |
// ----------------------------------- |
- Label slow, miss_force_generic; |
+ Label slow, miss; |
// This stub is meant to be tail-jumped to, the receiver must already |
// have been verified by the caller to not be a smi. |
- __ JumpIfNotSmi(ecx, &miss_force_generic); |
+ __ JumpIfNotSmi(ecx, &miss); |
__ mov(ebx, ecx); |
__ SmiUntag(ebx); |
__ mov(eax, FieldOperand(edx, JSObject::kElementsOffset)); |
@@ -3238,13 +3238,13 @@ void KeyedLoadStubCompiler::GenerateLoadDictionaryElement( |
// ----------------------------------- |
TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Slow); |
- __ bind(&miss_force_generic); |
+ __ bind(&miss); |
// ----------- S t a t e ------------- |
// -- ecx : key |
// -- edx : receiver |
// -- esp[0] : return address |
// ----------------------------------- |
- TailCallBuiltin(masm, Builtins::kKeyedLoadIC_MissForceGeneric); |
+ TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss); |
} |