Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: src/arm64/full-codegen-arm64.cc

Issue 1220223005: Cleanup frame description constant. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_graph-builder-new-target
Patch Set: Addressed comments. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/arm64/frames-arm64.h ('k') | src/frames.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/full-codegen-arm64.cc
diff --git a/src/arm64/full-codegen-arm64.cc b/src/arm64/full-codegen-arm64.cc
index 0345751dfc7c3c6d8047139f388be000e0c99c31..ecbd118ea771e4ff59bd5eb96b0e36631e9993ec 100644
--- a/src/arm64/full-codegen-arm64.cc
+++ b/src/arm64/full-codegen-arm64.cc
@@ -269,8 +269,8 @@ void FullCodeGenerator::Generate() {
Label non_construct_frame, done;
__ B(ne, &non_construct_frame);
- __ Ldr(x0, MemOperand(x2, StandardFrameConstants::kExpressionsOffset -
- 2 * kPointerSize));
+ __ Ldr(x0,
+ MemOperand(x2, ConstructFrameConstants::kOriginalConstructorOffset));
__ B(&done);
__ Bind(&non_construct_frame);
« no previous file with comments | « src/arm64/frames-arm64.h ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698