[llvm-commits] [test-suite] r64176 - /test-suite/trunk/Makefile.programs

Dan Gohman gohman at apple.com
Mon Feb 9 14:00:18 PST 2009


Author: djg
Date: Mon Feb  9 16:00:17 2009
New Revision: 64176

URL: http://llvm.org/viewvc/llvm-project?rev=64176&view=rev
Log:
Handle ARCH=x86_64 the same as ARCH=x86 here.

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=64176&r1=64175&r2=64176&view=diff

==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Mon Feb  9 16:00:17 2009
@@ -223,6 +223,9 @@
 ifeq ($(ARCH),IA64)
 LLCBETAOPTION := -sched=simple 
 endif
+ifeq ($(ARCH),x86_64)
+LLCBETAOPTION := -disable-post-RA-scheduler=false
+endif
 ifeq ($(ARCH),x86)
 LLCBETAOPTION := -disable-post-RA-scheduler=false
 #-pre-alloc-split
@@ -347,11 +350,13 @@
 # -enable-eh is no longer required to get DWARF exceptions.
 ifneq ($(ARCH),PowerPC)
 ifneq ($(ARCH),x86)
+ifneq ($(ARCH),x86_64)
 LLCFLAGS += -enable-correct-eh-support
 LLVMLD_FLAGS += -disable-inlining
 endif
 endif
 endif
+endif
 
 # Pass target specific llc flags
 ifdef TARGET_LLCFLAGS





More information about the llvm-commits mailing list