Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
arguments-elimination-will-generate-edge-without-result.js
blob: 49bad35a42ad9bf908bbf7911868cb252f870dff [
file
] [
log
] [
blame
]
//@ runDefault("--validateGraphAtEachPhase=true", "--jitPolicyScale=0", "--useConcurrentJIT=0")
'use strict'
;
function
foo
()
{
return
arguments
[
1
][
0
]
===
arguments
[
0
];
}
for
(
let i
=
0
;
i
<
100000
;
++
i
)
{
foo
(
0
,
0
);
}