Chromium Code Reviews

Unified Diff: src/crankshaft/hydrogen.cc

Issue 2143983002: Fix context for fast accessors (lazy). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/code-stubs.h ('k') | src/fast-accessor-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/hydrogen.cc
diff --git a/src/crankshaft/hydrogen.cc b/src/crankshaft/hydrogen.cc
index 7fce48961f3a2c8d78d23b43b7e3a08fa9e7c77e..206d761a3f7592e2a9dc8fe5b42075f3df4d9d26 100644
--- a/src/crankshaft/hydrogen.cc
+++ b/src/crankshaft/hydrogen.cc
@@ -9359,7 +9359,7 @@ bool HOptimizedGraphBuilder::TryInlineApiCall(
Vector<HValue*>(op_vals, arraysize(op_vals) - 1),
syntactic_tail_call_mode);
} else {
- CallApiCallbackStub stub(isolate(), argc, call_data_undefined);
+ CallApiCallbackStub stub(isolate(), argc, call_data_undefined, false);
Handle<Code> code = stub.GetCode();
HConstant* code_value = Add<HConstant>(code);
call = New<HCallWithDescriptor>(
« no previous file with comments | « src/code-stubs.h ('k') | src/fast-accessor-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine