Sign in
webkit
/
WebKit
/
8eee6aaf9a7a5e994cecf62dc64ad24b40961b24
/
.
/
JSTests
/
stress
/
int52-ai-mul-then-filter-int32.js
blob: 7048e2100f83159cc4a431396280612a3909bcec [
file
] [
log
] [
blame
]
function
foo
(
a
,
b
,
c
)
{
var
o
=
{
f
:
42
};
if
(
DFGTrue
())
o
.
f
=
a
*
b
*
c
;
return
o
.
f
|
0
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
result
=
foo
(
65536
,
65536
,
0
);
if
(
result
!=
0
&&
result
!=
42
)
throw
"Error: bad result: "
+
result
;
}