# HG changeset patch # User Stefan Anzinger # Date 1444306784 25200 # Node ID 7d4688ad5afdf6db8e9d250c05f9f0e1bf765361 # Parent e1ec715b88d09da025bc83204209b9f9ddff1dd3 Disable GCCs tree-bit-ccp on SPARC/Linux diff -r e1ec715b88d0 -r 7d4688ad5afd mx.jvmci/mx_jvmci.py --- a/mx.jvmci/mx_jvmci.py Wed Oct 07 23:05:44 2015 -0700 +++ b/mx.jvmci/mx_jvmci.py Thu Oct 08 05:19:44 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 -fno-tree-loop-distribute-patterns -fno-schedule-insns -fno-schedule-insns2", 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-schedule-insns2 -fno-tree-bit-ccp", env=env) setMakeVar('MAKE_VERBOSE', 'y' if mx._opts.verbose else '') if self.vm.endswith('nojvmci'):