git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
The CleanUp after LICM is erroneously removing a Check
[WebKit-https.git]
/
JSTests
/
stress
/
dont-run-cleanup-after-licm.js
1
function foo(string) {
2
var result1, result2;
3
for (var i = 0; i < 1000; ++i) {
4
result1 = string[0];
5
for (var j = 0; j < 10; ++j)
6
result2 = 1;
7
}
8
return [result1, result2];
9
}
10
noInline(foo);
11
12
foo(" ");
13
for (var i = 0; i < 1000; i++)
14
foo(new Error());