Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
bug-171786.js
blob: 2e467557e748945855949196273782e69c93d049 [
file
] [
log
] [
blame
]
function
foo
(
i
,
x
)
{
return
String
.
prototype
.
big
.
call
(
x
);
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
1000
;
i
++)
{
try
{
if
(
i
<
200
)
foo
(
i
,
"hello"
);
else
foo
(
i
,
undefined
);
}
catch
(
e
)
{
}
}