()
| 27 | testAsin(); |
| 28 | |
| 29 | function testAtan() { |
| 30 | function cst() { return 1; } |
| 31 | function f() { return Math.atan(cst()); } |
| 32 | %PrepareFunctionForOptimization(cst); |
| 33 | %PrepareFunctionForOptimization(f); |
| 34 | f(); |
| 35 | %OptimizeMaglevOnNextCall(f); |
| 36 | assertEquals(Math.atan(1.0), f()); |
| 37 | } |
| 38 | testAtan(); |
| 39 | |
| 40 | function testCbrt() { |
no test coverage detected
searching dependent graphs…