diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-05 12:24:46 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-06 10:26:10 -0800 |
commit | 33cdfe5819e789cb9a98b8b7f66447ceab861f84 (patch) | |
tree | 602ae78dc7437a1cd3d87b6bb46dcb598416d9e6 /src/library.js | |
parent | 13b82208767b3af7a8716356c07b6eac26da5ac3 (diff) |
split js compiler into three passes, to facilitate future parallization
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 8e30ba31..73109334 100644 --- a/src/library.js +++ b/src/library.js @@ -5042,7 +5042,7 @@ LibraryManager.library = { }; }, - llvm_uadd_with_overflow_i64__deps: [function() { preciseI64MathUsed = 1 }], + 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); return { @@ -5051,7 +5051,7 @@ LibraryManager.library = { }; }, - llvm_umul_with_overflow_i64__deps: [function() { preciseI64MathUsed = 1 }], + llvm_umul_with_overflow_i64__deps: [function() { Types.preciseI64MathUsed = 1 }], llvm_umul_with_overflow_i64: function(xl, xh, yl, yh) { i64Math.mul(xl, xh, yl, yh); return { |