Sign in
webkit
/
WebKit
/
3e99eafa6bc5f50c29b187c8f33e3b2194fbadae
/
.
/
JSTests
/
microbenchmarks
/
cfg-simplify.js
blob: 2f883734ae38843e9751bc37f2af715aeedb787b [
file
] [
log
] [
blame
]
function
foo
(
a
,
b
,
c
)
{
if
(
a
+
b
<
c
)
return
a
-
b
+
c
;
else
return
a
+
b
-
c
;
}
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
{
if
(
foo
(
1
,
2
,
3
)
!=
0
)
throw
new
"Result not zero"
;
}