[llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sat Aug 14 23:11:07 PDT 2004
Changes in directory llvm/test/Programs/External/SPEC/CINT2000/255.vortex:
Makefile updated: 1.6 -> 1.7
---
Log message:
Hopefully this will fix the PPC CBE failures
---
Diffs of the changes: (+7 -6)
Index: llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile
diff -u llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile:1.6 llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile:1.7
--- llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile:1.6 Wed Feb 25 18:01:20 2004
+++ llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile Sun Aug 15 01:10:54 2004
@@ -3,14 +3,15 @@
include ../../Makefile.spec2000
-ifeq ($(ARCH),Sparc)
- ## SPEC portability note for vortex says to use this flag on 64-bit machines
- CPPFLAGS += -DSPEC_CPU2000_LP64
-
- # If we're on sparc, use the Big Endian input file
+# pick the big or little endian data file based on the host.
+ifeq ($(ENDIAN),big)
RUN_OPTIONS = bendian.raw
else
- # Use the Little Endian input file
RUN_OPTIONS = lendian.raw
endif
+ifeq ($(ARCH),Sparc)
+ ## SPEC portability note for vortex says to use this flag on 64-bit machines
+ CPPFLAGS += -DSPEC_CPU2000_LP64
+endif
+
More information about the llvm-commits
mailing list