blob: 3d4ee3faeb3e1be34acddf41bdc88d7f9cb26c83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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) {
return 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);
|