blob: e64955ee1a11886fa662a33f95f8ec4a637730cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This program crashes the ARM code generator because the machine code is
// longer than the 32MB range of ARM branch instructions.
//
// Baseline should not attempt to compile the script.
i = 1;
function test(s) eval("line0 = Error.lineNumber\ndebugger\n" + s);
function repeat(s) {
return Array(65 << 13).join(s)
}
long_expr = repeat(" + i")
long_throw_stmt = long_expr;
test(long_throw_stmt);
|