diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 20:17:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 20:17:52 -0800 |
commit | 2b268751a2d2fab4eac3b3626476f7330c4d6a54 (patch) | |
tree | 83cf4b3094224f8f3fcb92a3ec7df6af005fbe05 | |
parent | 564bd0195a1c90e39bd2c10d90142e81b7025033 (diff) |
default to replacing x86_fp80 with doubles, because libcxx is full of long doubles
-rw-r--r-- | src/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js index 587e2f16..1d62cbbf 100644 --- a/src/settings.js +++ b/src/settings.js @@ -200,7 +200,7 @@ var RUNTIME_TYPE_INFO = 0; // Whether to expose type info to the script at run t // to more easily perform operations from handwritten JS on // objects with structures etc. -var FAKE_X86_FP80 = 0; // Replaces x86_fp80 with double. This loses precision. It is better, +var FAKE_X86_FP80 = 1; // Replaces x86_fp80 with double. This loses precision. It is better, // if you can, to get the original source code to build without x86_fp80 // (which is nonportable anyhow). |