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 d69f5ac5aea422306e07da1eed3d895d1051c646..39e9994708889b344ca550c8e1eebf307da6aa21 100644 |
--- a/test/unittests/interpreter/bytecode-array-builder-unittest.cc |
+++ b/test/unittests/interpreter/bytecode-array-builder-unittest.cc |
@@ -216,7 +216,10 @@ TEST_F(BytecodeArrayBuilderTest, AllBytecodesGenerated) { |
.Throw() |
.Bind(&after_throw); |
- builder.ForInPrepare(reg).ForInDone(reg).ForInNext(reg, reg); |
+ builder.ForInPrepare(reg, reg, reg) |
+ .ForInDone(reg, reg) |
+ .ForInNext(reg, reg, reg, reg) |
+ .ForInStep(reg); |
// Wide constant pool loads |
for (int i = 0; i < 256; i++) { |