()
| 58 | testCos(); |
| 59 | |
| 60 | function testExp() { |
| 61 | function cst() { return 0; } |
| 62 | function f() { return Math.exp(cst()); } |
| 63 | %PrepareFunctionForOptimization(cst); |
| 64 | %PrepareFunctionForOptimization(f); |
| 65 | f(); |
| 66 | %OptimizeMaglevOnNextCall(f); |
| 67 | assertEquals(1.0, f()); |
| 68 | } |
| 69 | testExp(); |
| 70 | |
| 71 | function testLog() { |
no test coverage detected
searching dependent graphs…