git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
FTL failed to initialize arguments.callee on the slow path as well as the fast path
[WebKit-https.git]
/
Source
/
JavaScriptCore
/
tests
/
stress
/
arguments-callee-uninitialized.js
1
function foo(e) {
2
if (e) {
3
arguments[0]--;
4
return arguments.callee.apply(this, arguments);
5
}
6
}
7
noInline(foo);
8
9
for (var i = 0; i < 10000; i++)
10
foo(1);
11