Sign in
webkit
/
WebKit
/
53c0a6bd89204da525ab0ecc516f8067861dc602
/
.
/
JSTests
/
stress
/
ftl-library-inlining-random.js
blob: 4b678037029b67294903eab99b62f7f12e1cc14e [
file
] [
log
] [
blame
]
function
foo
(
x
){
return
Math
.
random
(
x
);
}
noInline
(
foo
);
var
x
=
0
;
for
(
var
i
=
0
;
i
<
100000
;
i
++){
x
=
foo
(
i
);
}