| 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 d72743eb5f7d39a438e491e21574f65906473c94..86059051fd8745a6dee07223c29ad29d3d4f07ca 100644
|
| --- a/test/unittests/interpreter/bytecode-array-builder-unittest.cc
|
| +++ b/test/unittests/interpreter/bytecode-array-builder-unittest.cc
|
| @@ -200,7 +200,8 @@ TEST_F(BytecodeArrayBuilderTest, AllBytecodesGenerated) {
|
| .Bind(&after_jump)
|
| .JumpIfNull(&start)
|
| .JumpIfUndefined(&start)
|
| - .JumpIfNotHole(&start);
|
| + .JumpIfNotHole(&start)
|
| + .JumpLoop(&start, 0);
|
| }
|
|
|
| // Longer jumps with constant operands
|
| @@ -263,9 +264,6 @@ TEST_F(BytecodeArrayBuilderTest, AllBytecodesGenerated) {
|
| // Emit stack check bytecode.
|
| builder.StackCheck(0);
|
|
|
| - // Emit an OSR poll bytecode.
|
| - builder.OsrPoll(1);
|
| -
|
| // Emit throw and re-throw in it's own basic block so that the rest of the
|
| // code isn't omitted due to being dead.
|
| BytecodeLabel after_throw;
|
|
|