[llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile

John Criswell criswell at cs.uiuc.edu
Wed Jul 30 10:56:01 PDT 2003


Changes in directory llvm/test/Programs/External/SPEC/CINT2000/255.vortex:

Makefile updated: 1.4 -> 1.5

---
Log message:

Modified the benchmark to use the big endian input file on Sparc.
Using the little endian input file causes an error to be printed, which in
turn causes vortext to segfault.



---
Diffs of the changes:

Index: llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile
diff -u llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile:1.4 llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile:1.5
--- llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile:1.4	Fri Jul  4 06:18:55 2003
+++ llvm/test/Programs/External/SPEC/CINT2000/255.vortex/Makefile	Wed Jul 30 10:55:36 2003
@@ -1,8 +1,16 @@
 LEVEL = ../../../../../..
-RUN_OPTIONS     = lendian.raw
 #STDOUT_FILENAME := input.random.out
+
 include ../../Makefile.spec
+
 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
+  RUN_OPTIONS     = bendian.raw
+else
+  # Use the Little Endian input file
+  RUN_OPTIONS     = lendian.raw
 endif
+





More information about the llvm-commits mailing list