changeset 23301:93caf66f5604

Disable GCCs ipa-cp-clone predictive-commoning on SPARC/Linux
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Thu, 04 Feb 2016 14:59:52 +0100
parents ab845d4f2ef6
children 90f7b4c21cfb
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	Thu Feb 04 10:38:15 2016 +0100
+++ b/mx.jvmci/mx_jvmci.py	Thu Feb 04 14:59:52 2016 +0100
@@ -938,7 +938,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 -fno-tree-loop-distribute-patterns -fno-schedule-insns -fno-tree-ccp", env=env)
+                setMakeVar("EXTRA_CFLAGS", "-Wno-conversion-null -Wno-int-to-pointer-cast -Wno-unused-function -fno-tree-loop-distribute-patterns -fno-schedule-insns -fno-tree-ccp -fno-ipa-cp-clone -fno-predictive-commoning", env=env)
 
             setMakeVar('MAKE_VERBOSE', 'y' if mx._opts.verbose else '')
             if self.vm.endswith('nojvmci'):