Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
cant-eliminate-string-object-structure-check-when-string-object-is-proven.js
blob: eb20e5f931cb9f3cdd4c692289e656dc17812dae [
file
] [
log
] [
blame
]
//@ runDefault("--forceEagerCompilation=1", "--useConcurrentJIT=0")
function
foo
(
x
)
{
x
.
toString
();
}
var
a
=
new
String
();
a
.
valueOf
=
0
for
(
var
i
=
0
;
i
<
5
;
i
++)
{
foo
(
a
)
}