Sign in
webkit
/
WebKit
/
b0d7f9b249dd6483d6c7bc4f13c440c0842b7127
/
.
/
JSTests
/
stress
/
sink-function-past-invalid-check-sneaky.js
blob: 33d3ec9dd8a233feafaa42633e1dc345ffb72668 [
file
] [
log
] [
blame
]
function
foo
(
p
)
{
var
o
=
function
()
{
};
var
q
=
{
f
:
p
?
o
:
42
};
var
tmp
=
q
.
f
+
1
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
foo
(
false
);
foo
(
true
);