[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/Makefile
Evan Cheng
evan.cheng at apple.com
Mon Apr 3 17:48:08 PDT 2006
Changes in directory llvm-test/SingleSource/UnitTests/Vector:
Makefile updated: 1.2 -> 1.3
---
Log message:
Added some Altivec and SSE examples from:
Introduction to Parallel Computing
A practical guide with examples in C
Oxford Texts in Applied and Engineering Mathematics No. 9
Oxford University Press, February 2004
ISBN: 0-19-851576-6 (hardback), 0-19-851577-4 (paperback)
http://people.inf.ethz.ch/arbenz/book/
---
Diffs of the changes: (+4 -0)
Makefile | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm-test/SingleSource/UnitTests/Vector/Makefile
diff -u llvm-test/SingleSource/UnitTests/Vector/Makefile:1.2 llvm-test/SingleSource/UnitTests/Vector/Makefile:1.3
--- llvm-test/SingleSource/UnitTests/Vector/Makefile:1.2 Sun Mar 26 23:54:42 2006
+++ llvm-test/SingleSource/UnitTests/Vector/Makefile Mon Apr 3 19:47:54 2006
@@ -9,6 +9,10 @@
DIRS += Altivec
endif
+ifeq ($(ARCH),x86)
+DIRS += SSE
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list