Sign in
webkit
/
WebKit
/
47b8206e2462d5a862fef65e142ae8764bd9b9e5
/
.
/
JSTests
/
stress
/
get-local-elimination.js
blob: 612f9d51a9a0c082594f7d20d7b8e0d0aa765eff [
file
] [
log
] [
blame
]
var
True
=
true
;
function
foo
(
a
)
{
var
x
=
a
;
if
(
True
)
return
a
+
x
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
result
=
foo
(
42
);
if
(
result
!=
84
)
throw
"Error: bad result: "
+
result
;
}