[llvm-commits] [test-suite] r73904 - /test-suite/trunk/External/HMMER/Makefile

Dale Johannesen dalej at apple.com
Mon Jun 22 14:22:16 PDT 2009


Author: johannes
Date: Mon Jun 22 16:22:15 2009
New Revision: 73904

URL: http://llvm.org/viewvc/llvm-project?rev=73904&view=rev
Log:
Cause -faltivec -maltivec to be passed on PPC target.
Don't ask me why -DSSE2 causes Altivec code to be
generated on this target, but it does.


Modified:
    test-suite/trunk/External/HMMER/Makefile

Modified: test-suite/trunk/External/HMMER/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/HMMER/Makefile?rev=73904&r1=73903&r2=73904&view=diff

==============================================================================
--- test-suite/trunk/External/HMMER/Makefile (original)
+++ test-suite/trunk/External/HMMER/Makefile Mon Jun 22 16:22:15 2009
@@ -9,6 +9,11 @@
 LIBS +=    -lpthread
 LDFLAGS += -lpthread
 
+ifeq ($(ARCH),PowerPC)
+TARGET_FLAGS += -maltivec -faltivec
+LCCFLAGS += -maltivec -faltivec
+endif
+
 ifdef LARGE_PROBLEM_SIZE
 RUN_OPTIONS = --fixed 400 --cpu 1 --num 200000 --seed 1158818515 $(HMMER_ROOT)/globin.hmm
 else





More information about the llvm-commits mailing list