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 efeb12e7b6638909f21b92b164a57d631cb8b3ba..e5c544c3dbc211c6cf14b0c8d8d756a75c42831e 100644 |
--- a/test/unittests/interpreter/bytecode-array-builder-unittest.cc |
+++ b/test/unittests/interpreter/bytecode-array-builder-unittest.cc |
@@ -440,6 +440,12 @@ TEST_F(BytecodeArrayBuilderTest, AllBytecodesGenerated) { |
scorecard[Bytecodes::ToByte(Bytecode::kTestNull)] = 1; |
} |
+ if (!FLAG_type_profile) { |
+ // Bytecode for CollectTypeProfile is only emitted when |
+ // Type Information for DevTools is turned on. |
+ scorecard[Bytecodes::ToByte(Bytecode::kCollectTypeProfile)] = 1; |
+ } |
+ |
// Check return occurs at the end and only once in the BytecodeArray. |
CHECK_EQ(final_bytecode, Bytecode::kReturn); |
CHECK_EQ(scorecard[Bytecodes::ToByte(final_bytecode)], 1); |