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

Unified Diff: test/cctest/interpreter/test-bytecode-generator.cc

Issue 1531273002: [Interpreter] Allocates new temporary register outside the reservation for consecutive registers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixing mjsunit.status again. one test is failing on bots. Created 5 years 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/interpreter/bytecode-generator.cc ('k') | test/cctest/interpreter/test-interpreter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/interpreter/test-bytecode-generator.cc
diff --git a/test/cctest/interpreter/test-bytecode-generator.cc b/test/cctest/interpreter/test-bytecode-generator.cc
index 61b8c36b1f28478dead596ea5b9af2d727352666..22713cfa0914035fca909395cf232cd93e7f21f6 100644
--- a/test/cctest/interpreter/test-bytecode-generator.cc
+++ b/test/cctest/interpreter/test-bytecode-generator.cc
@@ -5583,16 +5583,16 @@ TEST(AssignmentsInBinaryExpression) {
B(Add), R(4), //
B(Star), R(3), //
B(LdaSmi8), U8(4), //
- B(Star), R(4), //
- B(Add), R(3), //
B(Star), R(5), //
+ B(Add), R(3), //
+ B(Star), R(4), //
B(LdaSmi8), U8(5), //
B(Star), R(1), //
- B(Add), R(5), //
+ B(Add), R(4), //
B(Star), R(3), //
B(Ldar), R(1), //
B(Add), R(3), //
- B(Mov), R(4), R(0), //
+ B(Mov), R(5), R(0), //
B(Return), //
},
0},
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | test/cctest/interpreter/test-interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698