Sign in
webkit
/
WebKit
/
067c47966a721d3fa5ff09389f461428e1e8b430
/
.
/
JSTests
/
microbenchmarks
/
branch-on-string-as-boolean.js
blob: e015492888b5765b47319c1043183965e663471c [
file
] [
log
] [
blame
]
// This test branches on the boolean value of a string, which should be fast in the DFG.
function
foo
(
string
)
{
var
bar
;
for
(
var
i
=
0
;
i
<
10000000
;
++
i
)
{
if
(
string
)
bar
++;
}
return
bar
;
}
result
=
foo
(
'hurr im a string'
);