Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
ftl-arithsin.js
blob: b559f4d490519d27719d5b4393018a94845a9526 [
file
] [
log
] [
blame
]
function
foo
(
x
)
{
return
Math
.
sin
(
x
);
}
noInline
(
foo
);
var
j
=
0
;
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
j
=
foo
(
i
);
if
(
0.860248280789742
!=
j
){
throw
"Error"
}