[llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.big ctl.lit Makefile

John Criswell criswell at cs.uiuc.edu
Fri Feb 13 15:38:02 PST 2004


Changes in directory llvm/test/Programs/External/SPEC/CINT95/124.m88ksim:

ctl.big added (r1.1)
ctl.lit added (r1.1)
Makefile updated: 1.1 -> 1.2

---
Log message:

Add the pre-processed input files ctl.big and ctl.lit (for big and little
endian, of course).
Adjust the Makefile to run the program with the correct inputs and command
line options.



---
Diffs of the changes:  (+22 -1)

Index: llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.big
diff -c /dev/null llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.big:1.1
*** /dev/null	Fri Feb 13 15:37:11 2004
--- llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.big	Fri Feb 13 15:37:00 2004
***************
*** 0 ****
--- 1,8 ----
+ lo dhry.big
+ cacheoff
+ br _exit
+ g
+ g
+ sd
+ q
+ 


Index: llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.lit
diff -c /dev/null llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.lit:1.1
*** /dev/null	Fri Feb 13 15:37:11 2004
--- llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/ctl.lit	Fri Feb 13 15:37:00 2004
***************
*** 0 ****
--- 1,8 ----
+ lo dhry.lit
+ cacheoff
+ br _exit
+ g
+ g
+ sd
+ q
+ 


Index: llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile
diff -u llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile:1.1 llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile:1.2
--- llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile:1.1	Fri Feb 13 11:17:05 2004
+++ llvm/test/Programs/External/SPEC/CINT95/124.m88ksim/Makefile	Fri Feb 13 15:37:00 2004
@@ -1,5 +1,10 @@
 LEVEL = ../../../../../..
-STDIN_FILENAME := ctl.raw
+RUN_OPTIONS = -c
+ifeq ($(ARCH),Sparc)
+STDIN_FILENAME := ctl.big
+else
+STDIN_FILENAME := ctl.lit
+endif
 STDOUT_FILENAME := test.out
 
 Source := addd.c \





More information about the llvm-commits mailing list