Sign in
webkit
/
WebKit
/
23e576feb4d75c9fc45f35cc19515c4cf11389a1
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-mul-big-integer-with-small-integer.js
blob: 7bfc2192d0d6d88ca6142d20003a6ece1f4f61fc [
file
] [
log
] [
blame
]
description
(
"Tests what happens when you multiply a big unknown integer with a small known integer."
);
function
foo
(
a
)
{
return
a
*
65536
;
}
for
(
var
i
=
0
;
i
<
100
;
++
i
)
shouldBe
(
"foo(2147483647)"
,
"140737488289792"
);