Index: src/crankshaft/ia32/lithium-codegen-ia32.cc |
diff --git a/src/crankshaft/ia32/lithium-codegen-ia32.cc b/src/crankshaft/ia32/lithium-codegen-ia32.cc |
index 42e035a9db2974548aa37d4c5cc1ad00b294c934..cd341b16c3ed346aa8c9b0fe0080568535e662ed 100644 |
--- a/src/crankshaft/ia32/lithium-codegen-ia32.cc |
+++ b/src/crankshaft/ia32/lithium-codegen-ia32.cc |
@@ -4819,7 +4819,7 @@ void LCodeGen::DoTypeof(LTypeof* instr) { |
__ mov(eax, Immediate(isolate()->factory()->number_string())); |
__ jmp(&end); |
__ bind(&do_call); |
- Callable callable = CodeFactory::Typeof(isolate()); |
+ Callable callable = Builtins::CallableFor(isolate(), Builtins::kTypeof); |
CallCode(callable.code(), RelocInfo::CODE_TARGET, instr); |
__ bind(&end); |
} |