diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-19 07:16:29 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-08-19 07:16:29 +0000 |
commit | df47653d79b175c09aec85a0d6f9d0a9d0bc58c2 (patch) | |
tree | bd9dac1d267b3aecf614c4c9a6bb0c5ebf12c888 /js/src/moz.build | |
parent | 00606d068b0ec09c24d60d46ea3b9820520b9731 (diff) | |
download | aura-central-df47653d79b175c09aec85a0d6f9d0a9d0bc58c2.tar.gz |
[js] Reinstate precise floating point model for all js sources.
Diffstat (limited to 'js/src/moz.build')
-rw-r--r-- | js/src/moz.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/moz.build b/js/src/moz.build index c0cef9929..3e6402f71 100644 --- a/js/src/moz.build +++ b/js/src/moz.build @@ -687,8 +687,8 @@ if CONFIG['_MSC_VER']: elif CONFIG['CPU_ARCH'] == 'x86_64' and CONFIG['JS_HAS_CTYPES']: SOURCES['ctypes/CTypes.cpp'].no_pgo = True # Bug 810661 # Prevent floating point errors caused by VC++ optimizations - # XXX We should add this to CXXFLAGS, too? CFLAGS += ['-fp:precise'] + CXXFLAGS += ['-fp:precise'] # C4805 warns mixing bool with other integral types in computation. # But given the conversion from bool is specified, and this is a # pattern widely used in code in js/src, suppress this warning here. |