aboutsummaryrefslogtreecommitdiff
path: root/src/modules.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.js')
-rw-r--r--src/modules.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules.js b/src/modules.js
index 1449e3f4..f85794bc 100644
--- a/src/modules.js
+++ b/src/modules.js
@@ -207,8 +207,9 @@ var Types = {
needAnalysis: {}, // Types noticed during parsing, that need analysis
- preciseI64MathUsed: false // Set to true if we actually use precise i64 math: If PRECISE_I64_MATH is set, and also such math is actually
- // needed (+,-,*,/,% - we do not need it for bitops)
+ // Set to true if we actually use precise i64 math: If PRECISE_I64_MATH is set, and also such math is actually
+ // needed (+,-,*,/,% - we do not need it for bitops), or PRECISE_I64_MATH is 2 (forced)
+ preciseI64MathUsed: (PRECISE_I64_MATH == 2)
};
var Functions = {