Sign in
webkit
/
WebKit
/
73559930a6418bc4621c1c5774b11e1be9c21a8f
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-bool-to-int32-reuse.js
blob: 5cfe1ad21716ea35123178481f4ee7523da9a30e [
file
] [
log
] [
blame
]
description
(
"Tests that using a value predicted boolean after it is converted to an int32 doesn't crash the compiler while causing bad code gen."
);
function
foo
(
x
)
{
return
[
x
<<
1
,
x
];
}
dfgShouldBe
(
foo
,
"foo(true)"
,
"[2, true]"
);