]> git.saurik.com Git - apple/javascriptcore.git/blame - tests/stress/dead-fiat-int32-to-int52.js
JavaScriptCore-7600.1.4.16.1.tar.gz
[apple/javascriptcore.git] / tests / stress / dead-fiat-int32-to-int52.js
CommitLineData
81345200
A
1function foo(o) {
2 fiatInt52(o.f);
3 fiatInt52(o.f);
4}
5
6noInline(foo);
7
8var o = {f:42};
9
10for (var i = 0; i < 1000000; ++i)
11 foo(o);