Index: test/cctest/interpreter/bytecode_expectations/Throw.golden |
diff --git a/test/cctest/interpreter/bytecode_expectations/Throw.golden b/test/cctest/interpreter/bytecode_expectations/Throw.golden |
index 73e203a60bca5eb4fe8350bd1280a7b8ccf260ed..40b019769ad87ff9def5dcbf0ce18578463864c6 100644 |
--- a/test/cctest/interpreter/bytecode_expectations/Throw.golden |
+++ b/test/cctest/interpreter/bytecode_expectations/Throw.golden |
@@ -44,20 +44,23 @@ handlers: [ |
snippet: " |
var a = 1; if (a) { throw 'Error'; }; |
" |
-frame size: 1 |
+frame size: 2 |
parameter count: 1 |
-bytecode array length: 12 |
+bytecode array length: 16 |
bytecodes: [ |
/* 30 E> */ B(StackCheck), |
- /* 42 S> */ B(LdaSmi), I8(1), |
+ /* 42 S> */ B(LdaConstant), U8(0), |
+ B(Star), R(1), |
+ B(LdaSmi), I8(1), |
B(Star), R(0), |
/* 45 S> */ B(JumpIfToBooleanFalse), U8(5), |
- /* 54 S> */ B(LdaConstant), U8(0), |
+ /* 54 S> */ B(LdaConstant), U8(1), |
/* 54 E> */ B(Throw), |
B(LdaUndefined), |
/* 72 S> */ B(Return), |
] |
constant pool: [ |
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["a"], |
ONE_BYTE_INTERNALIZED_STRING_TYPE ["Error"], |
] |
handlers: [ |