Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
get-my-argument-by-val-constant-folding.js
blob: 1eb8b0372f93d172ce27b62e4bfc92d35fa21cae [
file
] [
log
] [
blame
]
function
test
()
{
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
{
try
{
(
function
()
{
return
arguments
[-
9
];
})(
42
);
}
catch
(
e
)
{}
}
}
noInline
(
test
);
try
{
test
(
42
);
}
catch
(
e
)
{}