test262/implementation-contributed/javascriptcore/stress/arguments-elimination-will-generate-edge-without-result.js
test262-automation 92cd78aaee [javascriptcore-test262-automation] Updated curation log with latest revision sha's from export and changed files.
sourceRevisionAtLastExport: 3353b2924e targetRevisionAtLastExport: b0b5c9f9e
2018-09-26 14:35:48 -04:00

10 lines
223 B
JavaScript

//@ 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);
}