Fix bytecode operand type

A value in unittests/Bytecodes.DecodeBytecodeAndOperands was 16 bit
instead of 8 bit. This was causing test to fail on big endian machines.

BUG=

Review-Url: https://codereview.chromium.org/2030063002
Cr-Commit-Position: refs/heads/master@{#36698}
This commit is contained in:
Miran.Karic 2016-06-03 01:35:13 -07:00 committed by Commit bot
parent 22a73e0d85
commit 16dda2152f

View File

@ -205,7 +205,7 @@ TEST(Bytecodes, DecodeBytecodeAndOperands) {
2,
3,
" Ldar a1"},
{{B(Wide), B(CreateObjectLiteral), U16(513), U16(1027), U16(165)},
{{B(Wide), B(CreateObjectLiteral), U16(513), U16(1027), U8(165)},
7,
0,
"CreateObjectLiteral.Wide [513], [1027], #165"},