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

Unified Diff: src/arm/full-codegen-arm.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/arm/frames-arm.h ('k') | src/arm64/frames-arm64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/full-codegen-arm.cc
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc
index 059ffe656f6b2d10c5ee71996d472fa65c0a54b3..e7ca30ba87bcb788317f549eb78eb9ca8f63f99d 100644
--- a/src/arm/full-codegen-arm.cc
+++ b/src/arm/full-codegen-arm.cc
@@ -263,8 +263,8 @@ void FullCodeGenerator::Generate() {
Label non_construct_frame, done;
__ b(ne, &non_construct_frame);
- __ ldr(r0, MemOperand(r2, StandardFrameConstants::kExpressionsOffset -
- 2 * kPointerSize));
+ __ ldr(r0,
+ MemOperand(r2, ConstructFrameConstants::kOriginalConstructorOffset));
__ b(&done);
__ bind(&non_construct_frame);
« no previous file with comments | « src/arm/frames-arm.h ('k') | src/arm64/frames-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698