[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
Chris Lattner
lattner at cs.uiuc.edu
Fri Feb 13 16:37:01 PST 2004
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.116 -> 1.117
---
Log message:
Run llvm-dis with filename and -o option isntead of pipes. It's more efficient,
and this way llvm-dis doesn't leave cruft around if it crashes
---
Diffs of the changes: (+2 -2)
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.116 llvm/test/Programs/Makefile.programs:1.117
--- llvm/test/Programs/Makefile.programs:1.116 Wed Feb 11 13:03:44 2004
+++ llvm/test/Programs/Makefile.programs Fri Feb 13 16:36:05 2004
@@ -259,7 +259,7 @@
#
$(PROGRAMS_TO_TEST:%=Output/%.cbe.c): \
Output/%.cbe.c: Output/%.llvm.bc $(LDIS)
- -$(LDIS) -c < $< > $@
+ -$(LDIS) -c $< -o $@ -f
$(PROGRAMS_TO_TEST:%=Output/%.cbe): \
Output/%.cbe: Output/%.cbe.c
@@ -383,7 +383,7 @@
$(LBUGPOINT) $< -run-jit $(BUGPOINT_OPTIONS)
-LIBPROFILESO := $(LEVEL)/lib/Debug/libprofile_rt.so
+LIBPROFILESO = $(LEVEL)/lib/Debug/libprofile_rt.so
$(PROGRAMS_TO_TEST:%=Output/%.prof): \
Output/%.prof: Output/%.llvm-prof.bc Output/%.out-nat $(LIBPROFILESO)
More information about the llvm-commits
mailing list