aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index 6dc7058c..70139d89 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -1858,6 +1858,9 @@ function JSify(data, functionsOnly, givenFunctions) {
print('// Warning: printing of i64 values may be slightly rounded! No deep i64 math used, so precise i64 code not included');
print('var i64Math = null;');
}
+ if (Types.usesSIMD) {
+ print(read('simd.js'));
+ }
if (CORRUPTION_CHECK) {
assert(!ASM_JS, 'corruption checker is not compatible with asm.js');