diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2018-11-29 13:54:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 13:54:10 -0800 |
commit | 252fd7f176c4a5ae6a6fa9a5124e153ddbaab638 (patch) | |
tree | 798386cd9eba764138acfbfe27c7d9d41842d811 /src/js/binaryen.js-post.js | |
parent | 5274d943ec65866089f6764af89205d003a15078 (diff) | |
download | binaryen-252fd7f176c4a5ae6a6fa9a5124e153ddbaab638.tar.gz binaryen-252fd7f176c4a5ae6a6fa9a5124e153ddbaab638.tar.bz2 binaryen-252fd7f176c4a5ae6a6fa9a5124e153ddbaab638.zip |
Add v128 type (#1777)
Diffstat (limited to 'src/js/binaryen.js-post.js')
-rw-r--r-- | src/js/binaryen.js-post.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/binaryen.js-post.js b/src/js/binaryen.js-post.js index 6f23867f5..06688d706 100644 --- a/src/js/binaryen.js-post.js +++ b/src/js/binaryen.js-post.js @@ -28,6 +28,7 @@ Module['i32'] = Module['_BinaryenTypeInt32'](); Module['i64'] = Module['_BinaryenTypeInt64'](); Module['f32'] = Module['_BinaryenTypeFloat32'](); Module['f64'] = Module['_BinaryenTypeFloat64'](); +Module['v128'] = Module['_BinaryenTypeVec128'](); Module['unreachable'] = Module['_BinaryenTypeUnreachable'](); Module['auto'] = /* deprecated */ Module['undefined'] = Module['_BinaryenTypeAuto'](); @@ -1629,4 +1630,3 @@ Module['exit'] = function(status) { // a stack trace, for debuggability. if (status != 0) throw new Error('exiting due to error: ' + status); }; - |