Index: src/crankshaft/x64/lithium-codegen-x64.cc |
diff --git a/src/crankshaft/x64/lithium-codegen-x64.cc b/src/crankshaft/x64/lithium-codegen-x64.cc |
index 13a3e3fabfde626791760a134e6619fa35c83f19..cf4cd11d34fad604af6ffb1899b631752aca3997 100644 |
--- a/src/crankshaft/x64/lithium-codegen-x64.cc |
+++ b/src/crankshaft/x64/lithium-codegen-x64.cc |
@@ -5088,7 +5088,7 @@ void LCodeGen::DoTypeof(LTypeof* instr) { |
__ Move(rax, 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); |
} |