[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/MallocBench/Makefile

Andrew Lenharth alenhar2 at cs.uiuc.edu
Wed Nov 16 12:36:10 PST 2005



Changes in directory llvm-test/MultiSource/Benchmarks/MallocBench:

Makefile updated: 1.9 -> 1.10
---
Log message:

who told them ints and pointers were interchangable

---
Diffs of the changes:  (+6 -0)

 Makefile |    6 ++++++
 1 files changed, 6 insertions(+)


Index: llvm-test/MultiSource/Benchmarks/MallocBench/Makefile
diff -u llvm-test/MultiSource/Benchmarks/MallocBench/Makefile:1.9 llvm-test/MultiSource/Benchmarks/MallocBench/Makefile:1.10
--- llvm-test/MultiSource/Benchmarks/MallocBench/Makefile:1.9	Thu Dec  2 11:13:22 2004
+++ llvm-test/MultiSource/Benchmarks/MallocBench/Makefile	Wed Nov 16 14:35:50 2005
@@ -1,3 +1,9 @@
 LEVEL = ../../..
 PARALLEL_DIRS  := cfrac espresso gs
+
+# cfrac mixes pointers and ints.  Thus doesn't work on alpha.
+ifeq ($(ARCH),Alpha)
+PARALLEL_DIRS := $(filter-out cfrac, $(PARALLEL_DIRS))
+endif
+
 include $(LEVEL)/Makefile.programs






More information about the llvm-commits mailing list