Sign in
webkit
/
WebKit
/
7d4d978abf88cabfef2bda12226fa6cc453c3871
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-mod-1.js
blob: 64b2377daa79f92f3a7a04175956e441c04bb99f [
file
] [
log
] [
blame
]
description
(
"Tests that the DFG handles x % 1 correctly."
);
function
foo
(
x
)
{
return
x
%
1
;
}
dfgShouldBe
(
foo
,
"foo(-5.5)"
,
"-0.5"
);
dfgShouldBe
(
foo
,
"1 / foo(-1)"
,
"-Infinity"
);