Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
8a2c8a97dfd3af0fdb68d49fc58e1163aca8085a
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-bool-to-int32-reuse.js
blob: 5cfe1ad21716ea35123178481f4ee7523da9a30e [
file
]
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]"
);