()
| 49 | testCbrt(); |
| 50 | |
| 51 | function testCos() { |
| 52 | function f() { return Math.cos(Math.PI); } |
| 53 | %PrepareFunctionForOptimization(f); |
| 54 | f(); |
| 55 | %OptimizeMaglevOnNextCall(f); |
| 56 | assertEquals(-1.0, f()); |
| 57 | } |
| 58 | testCos(); |
| 59 | |
| 60 | function testExp() { |
no test coverage detected
searching dependent graphs…