diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-31 12:36:31 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-31 12:36:31 -0800 |
commit | ab7cd91cbf4899218a411c8190cd32c9da489eac (patch) | |
tree | 5c17d4ff70e11f4d5125a0a92b4a1d651388a2ec | |
parent | 5edd66f9c9d489c7e78dc6c60751a29848219e08 (diff) |
fix llvm_swap_i64
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index 61665920..cfe4d4a0 100644 --- a/src/library.js +++ b/src/library.js @@ -4834,7 +4834,7 @@ LibraryManager.library = { var retl = _llvm_bswap_i32(h)>>>0; var reth = _llvm_bswap_i32(l)>>>0; #if USE_TYPED_ARRAYS == 2 - return [retl, reth]; + {{{ makeStructuralReturn(['retl', 'reth']) }}}; #else throw 'unsupported'; #endif |