[llvm-commits] CVS: llvm/test/Programs/External/SPEC/CINT95/126.gcc/Makefile
John Criswell
criswell at cs.uiuc.edu
Fri Feb 13 15:10:05 PST 2004
Changes in directory llvm/test/Programs/External/SPEC/CINT95/126.gcc:
Makefile updated: 1.2 -> 1.3
---
Log message:
Fix for removing builtin_next_arg from being called. Basically, we want
bytetypes.h from src.alt to get included, but not the stdard in src.alt.
Adding the directory to the secondary include path gets us the right
combination.
---
Diffs of the changes: (+1 -1)
Index: llvm/test/Programs/External/SPEC/CINT95/126.gcc/Makefile
diff -u llvm/test/Programs/External/SPEC/CINT95/126.gcc/Makefile:1.2 llvm/test/Programs/External/SPEC/CINT95/126.gcc/Makefile:1.3
--- llvm/test/Programs/External/SPEC/CINT95/126.gcc/Makefile:1.2 Fri Feb 13 11:40:55 2004
+++ llvm/test/Programs/External/SPEC/CINT95/126.gcc/Makefile Fri Feb 13 15:08:57 2004
@@ -1,5 +1,5 @@
LEVEL = ../../../../../..
-CPPFLAGS += -U_STDARG_H -DSPEC -I$(SPEC95_ROOT)/CINT95/126.gcc/src/src.alt
+CPPFLAGS += -DSPEC -idirafter $(SPEC95_ROOT)/CINT95/126.gcc/src/src.alt
RUN_OPTIONS := -quiet -funroll-loops -fforce-mem -fcse-follow-jumps -fcse-skip-blocks -fexpensive-optimizations -fstrength-reduce -fpeephole -fschedule-insns -finline-functions -fschedule-insns2 -O -o -
STDIN_FILENAME = cccp.i
STDOUT_FILENAME = cccp.s
More information about the llvm-commits
mailing list