Chromium Code Reviews

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

Issue 2216023003: [interpreter] Add register output to ObjectLiteral (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/unittests/interpreter/bytecode-decoder-unittest.cc
diff --git a/test/unittests/interpreter/bytecode-decoder-unittest.cc b/test/unittests/interpreter/bytecode-decoder-unittest.cc
index 4e60a6e7d20ac4b8130023236c853c95345b7af2..7d61f6a1b36d433495b13f73989dd620c45cce5e 100644
--- a/test/unittests/interpreter/bytecode-decoder-unittest.cc
+++ b/test/unittests/interpreter/bytecode-decoder-unittest.cc
@@ -46,10 +46,11 @@ TEST(BytecodeDecoder, DecodeBytecodeAndOperands) {
2,
3,
" Ldar a1"},
- {{B(Wide), B(CreateObjectLiteral), U16(513), U16(1027), U8(165)},
- 7,
+ {{B(Wide), B(CreateObjectLiteral), U16(513), U16(1027), U8(165),
+ R16(137)},
+ 9,
0,
- "CreateObjectLiteral.Wide [513], [1027], #165"},
+ "CreateObjectLiteral.Wide [513], [1027], #165, r137"},
{{B(ExtraWide), B(JumpIfNull), U32(123456789)},
6,
0,

Powered by Google App Engine