repo.or.cz
/
qtwebkit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update ReadMe.md
[qtwebkit.git]
/
JSTests
/
microbenchmarks
/
infer-constant-global-property.js
blob
35af1bcddfb39271dfb74b1885c718ee99e9493a
1
(function() {
2
var result = 0;
3
for (var i = 0; i < 1000000; ++i) {
4
result += Math.sin(Math.PI);
5
}
6
if (Math.abs(result) > 1e-8)
7
throw "Error: bad result: " + result;
8
})();