projects
/
apple
/
javascriptcore.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git]
/
tests
/
stress
/
ftl-checkin.js
Commit
Line
Data
ed1e77d3
A
1
function foo(x){
2
var t = "s" in x;
3
return t;
4
}
5
6
noInline(foo);
7
8
var r;
9
for (var i = 0; i < 1000000; ++i) {
10
var z = { 'y' : i, 's' : i + 1 };
11
z.s = 10;
12
r = foo(z);
13
}
14
15
if (!r) {
16
print ("Error: " + r);
17
}