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

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: comments 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-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,
« no previous file with comments | « test/unittests/interpreter/bytecode-array-builder-unittest.cc ('k') | test/unittests/interpreter/bytecodes-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698