summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug942550.js
blob: 16344f08482e96ef4122f8148dda10cdbcbbdc1c (plain)
1
2
3
4
5
6
function pow(x,y) {
    return Math.pow(x,y);
}
var x = pow(3, -.5);
var y = pow(3, -.5);
assertEq(x, y);