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

Unified Diff: test/cctest/interpreter/bytecode_expectations/Conditional.golden

Issue 2640273002: [ignition] Expect 'I' for signed bytecode operands (Closed)
Patch Set: Rebase Created 3 years, 11 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/cctest/interpreter/bytecode_expectations/Conditional.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/Conditional.golden b/test/cctest/interpreter/bytecode_expectations/Conditional.golden
index 049de5a8b3c43c82784b1909bdec495c2e8e9740..db44e2bd87228af10754345c5bb957e8f01e8a48 100644
--- a/test/cctest/interpreter/bytecode_expectations/Conditional.golden
+++ b/test/cctest/interpreter/bytecode_expectations/Conditional.golden
@@ -14,7 +14,7 @@ parameter count: 1
bytecode array length: 4
bytecodes: [
/* 30 E> */ B(StackCheck),
- /* 34 S> */ B(LdaSmi), U8(2),
+ /* 34 S> */ B(LdaSmi), I8(2),
/* 52 S> */ B(Return),
]
constant pool: [
@@ -31,7 +31,7 @@ parameter count: 1
bytecode array length: 4
bytecodes: [
/* 30 E> */ B(StackCheck),
- /* 34 S> */ B(LdaSmi), U8(3),
+ /* 34 S> */ B(LdaSmi), I8(3),
/* 60 S> */ B(Return),
]
constant pool: [
@@ -50,12 +50,12 @@ bytecodes: [
/* 30 E> */ B(StackCheck),
/* 34 S> */ B(LdaZero),
B(Star), R(0),
- B(LdaSmi), U8(1),
+ B(LdaSmi), I8(1),
/* 43 E> */ B(TestLessThan), R(0), U8(2),
B(JumpIfFalse), U8(6),
- B(LdaSmi), U8(2),
+ B(LdaSmi), I8(2),
B(Jump), U8(4),
- B(LdaSmi), U8(3),
+ B(LdaSmi), I8(3),
/* 56 S> */ B(Return),
]
constant pool: [
@@ -76,9 +76,9 @@ bytecodes: [
/* 42 S> */ B(LdaZero),
B(Star), R(0),
/* 45 S> */ B(JumpIfToBooleanFalse), U8(6),
- B(LdaSmi), U8(2),
+ B(LdaSmi), I8(2),
B(Jump), U8(4),
- B(LdaSmi), U8(3),
+ B(LdaSmi), I8(3),
/* 63 S> */ B(Return),
]
constant pool: [

Powered by Google App Engine
This is Rietveld 408576698