Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
value-to-int32-undefined.js
blob: 7e35169e260c8ecfe08edf7297015b525dd3e38d [
file
] [
log
] [
blame
]
function
foo
(
a
)
{
return
a
|
0
;
}
noInline
(
foo
());
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
result
=
foo
(
void
0
);
if
(
result
!=
0
)
throw
"Error: bad result: "
+
result
;
}