diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-22 07:03:51 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-08-22 07:03:51 +0000 |
commit | c04befb938a6ab861bce0246eab2d586c913ceb0 (patch) | |
tree | f976fda026ea7eb2a5ba62a23ceb52faa600aff8 /js | |
parent | 86f128d4125bbc3c98e6e7fb4ecf513d664058f8 (diff) | |
parent | dd1ad91cb40d1f366aab1d8d552fea7155686323 (diff) | |
download | uxp-c04befb938a6ab861bce0246eab2d586c913ceb0.tar.gz |
Merge branch 'master' into es-modules-work
Diffstat (limited to 'js')
-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 c0cef9929b..3e6402f71e 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. |