Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
ftl-arithtan.js
blob: b936c6eccd4890641888aaa657658f1d56ce590e [
file
] [
log
] [
blame
]
function
foo
(
x
)
{
return
Math
.
tan
(
x
);
}
noInline
(
foo
);
var
expected
=
foo
(
100000
-
1
);
var
j
=
0
;
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
j
=
foo
(
i
);
if
(
expected
!=
j
){
throw
`
Error
:
$
{
j
}`;
}