The Tor Browser
/ file comparison
Search:
summary
shortlog
changelog
graph
tags
bookmarks
branches
files
help
file
revisions
annotate
diff
comparison
raw
comparison: js/src/jit-test/tests/basic/testBranchCse.js
js/src/jit-test/tests/basic/testBranchCse.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:2d293acf006e
1
function testBranchCse() {
2
empty = [];
3
out = [];
4
for (var j=0;j<10;++j) { empty[42]; out.push((1 * (1)) | ""); }
5
return out.join(",");
6
}
7
assertEq(testBranchCse(), "1,1,1,1,1,1,1,1,1,1");