[test-suite] r177405 - Disable the darwin -force_cpusubtype_ALL parameter for Linux targets.

Will Schmidt will_schmidt at vnet.ibm.com
Tue Mar 19 08:24:08 PDT 2013


Author: willschm
Date: Tue Mar 19 10:24:08 2013
New Revision: 177405

URL: http://llvm.org/viewvc/llvm-project?rev=177405&view=rev
Log:

Disable the darwin -force_cpusubtype_ALL parameter for Linux targets.


Modified:
    test-suite/trunk/Makefile.programs

Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=177405&r1=177404&r2=177405&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Tue Mar 19 10:24:08 2013
@@ -377,8 +377,10 @@ Output/%.opt-beta.s: Output/%.llvm.optbe
 
 # On darwin, pass -force_cpusubtype_ALL to allow all ppc instructions.
 ifeq ($(ARCH),PowerPC)
+ifneq ($TARGET_OS),Linux)
 LLCASSEMBLERFLAGS = -force_cpusubtype_ALL
 endif
+endif
 # On sparc, pass -mcpu=v9 to allow all V9 instructions, even in 32-bit mode.
 ifeq ($(ARCH),Sparc)
 LLCASSEMBLERFLAGS = -mcpu=v9





More information about the llvm-commits mailing list