()
| 69 | testExp(); |
| 70 | |
| 71 | function testLog() { |
| 72 | function cst() { return 1; } |
| 73 | function f() { return Math.log(cst()); } |
| 74 | %PrepareFunctionForOptimization(cst); |
| 75 | %PrepareFunctionForOptimization(f); |
| 76 | f(); |
| 77 | %OptimizeMaglevOnNextCall(f); |
| 78 | assertEquals(0.0, f()); |
| 79 | } |
| 80 | testLog(); |
| 81 | |
| 82 | function testSin() { |
no test coverage detected
searching dependent graphs…