changeset 22660:897914fce4cb

Disable GCCs loop-distribution-pattern on SPARC/Linux which break the HotSpot interpreter
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Tue, 06 Oct 2015 09:40:59 -0700
parents 39f1499686ea
children db43de18c170
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Tue Oct 06 16:52:36 2015 +0200
+++ b/mx.jvmci/mx_jvmci.py	Tue Oct 06 09:40:59 2015 -0700
@@ -924,7 +924,7 @@
             if mx.get_os() == 'linux' and platform.processor() == 'sparc64':
                 # SPARC/Linux
                 setMakeVar("DEBUG_BINARIES", "true", env=env)
-                setMakeVar("EXTRA_CFLAGS", "-Wno-conversion-null -Wno-int-to-pointer-cast -Wno-unused-function", env=env)
+                setMakeVar("EXTRA_CFLAGS", "-Wno-conversion-null -Wno-int-to-pointer-cast -Wno-unused-function -fno-tree-loop-distribute-patterns", env=env)
 
             setMakeVar('MAKE_VERBOSE', 'y' if mx._opts.verbose else '')
             if self.vm.endswith('nojvmci'):