Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
dont-branch-around-regalloc-enumerator-get-by-val.js
blob: 253d136b265b241d474a248ca2f76838e8a4624d [
file
] [
log
] [
blame
]
function
foo
(
o
)
{
for
(
let p in o
)
{
o
[
p
];
}
}
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
foo
(
new
Uint32Array
());
foo
({
o
:
undefined
});
}