diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-11 18:59:56 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-11 18:59:56 -0800 |
commit | 9edafa0105fb440e9128d02a192fe375910bba63 (patch) | |
tree | 82544e434fe478e464351a8a1f0839f2d933492f /src/library.js | |
parent | 2d325075bd7fa8d10a02a8ba451d2aeca8b707e6 (diff) |
more tempDoublePtr refactoring
Diffstat (limited to 'src/library.js')
-rw-r--r-- | src/library.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library.js b/src/library.js index 8b5c8474..7ae17fb7 100644 --- a/src/library.js +++ b/src/library.js @@ -5130,14 +5130,14 @@ LibraryManager.library = { llvm_uadd_with_overflow_i64__deps: [function() { Types.preciseI64MathUsed = 1 }], llvm_uadd_with_overflow_i64: function(xl, xh, yl, yh) { i64Math.add(xl, xh, yl, yh); - {{{ makeStructuralReturn(['HEAP32[tempDoublePtr>>2]', 'HEAP32[tempDoublePtr+4>>2]', '0']) }}}; + {{{ makeStructuralReturn([makeGetTempDouble(0, 'i32'), makeGetTempDouble(1, 'i32'), '0']) }}}; // XXX Need to hack support for second param in long.js }, llvm_umul_with_overflow_i64__deps: [function() { Types.preciseI64MathUsed = 1 }], llvm_umul_with_overflow_i64: function(xl, xh, yl, yh) { i64Math.multiply(xl, xh, yl, yh); - {{{ makeStructuralReturn(['HEAP32[tempDoublePtr>>2]', 'HEAP32[tempDoublePtr+4>>2]', '0']) }}}; + {{{ makeStructuralReturn([makeGetTempDouble(0, 'i32'), makeGetTempDouble(1, 'i32'), '0']) }}}; // XXX Need to hack support for second param in long.js }, |