Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
chill-mod-chill-mod.js
blob: e5e770f83c9966809f6c05388c599bcf2c1a1006 [
file
] [
log
] [
blame
]
function
foo
(
a
,
b
)
{
return
(~~(
a
%
b
))
+
(~~(
b
%
a
));
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
foo
(
1
,
2
);