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

Unified Diff: test/unittests/interpreter/bytecode-array-builder-unittest.cc

Issue 2289613002: [turbofan] Remove special JSForInStep and JSForInDone. (Closed)
Patch Set: Created 4 years, 4 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
Index: test/unittests/interpreter/bytecode-array-builder-unittest.cc
diff --git a/test/unittests/interpreter/bytecode-array-builder-unittest.cc b/test/unittests/interpreter/bytecode-array-builder-unittest.cc
index fffc97f54daac2bfb2c67be83df55ad50a7b21eb..2c1c0180d26e16686f2ba5d19889bb17095bb6fa 100644
--- a/test/unittests/interpreter/bytecode-array-builder-unittest.cc
+++ b/test/unittests/interpreter/bytecode-array-builder-unittest.cc
@@ -273,11 +273,11 @@ TEST_F(BytecodeArrayBuilderTest, AllBytecodesGenerated) {
builder.ReThrow().Bind(&after_rethrow);
builder.ForInPrepare(reg, reg)
- .ForInDone(reg, reg)
+ .ForInContinue(reg, reg)
.ForInNext(reg, reg, reg, 1)
.ForInStep(reg);
builder.ForInPrepare(reg, wide)
- .ForInDone(reg, other)
+ .ForInContinue(reg, other)
.ForInNext(wide, wide, wide, 1024)
.ForInStep(reg);

Powered by Google App Engine
This is Rietveld 408576698