[llvm-commits] CVS: llvm/test/Programs/Makefile.programs

Misha Brukman brukman at cs.uiuc.edu
Fri Jul 11 12:01:01 PDT 2003


Changes in directory llvm/test/Programs:

Makefile.programs updated: 1.67 -> 1.68

---
Log message:

If we are using the tracing mechanism, and the program crashes or we choose to
abort it earlier, keep the output file so we at least have something to compare.


---
Diffs of the changes:

Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.67 llvm/test/Programs/Makefile.programs:1.68
--- llvm/test/Programs/Makefile.programs:1.67	Thu Jul 10 14:29:01 2003
+++ llvm/test/Programs/Makefile.programs	Fri Jul 11 12:00:07 2003
@@ -135,6 +135,8 @@
   ## -- disable output diffs
   ## -- generate llc output if not disabled
   ## -- generate cbe output if not disabled
+  ## -- Make the trace output files precious if tracing is enabled because
+  ##    we often don't want to generate the complete trace file!
 
 DISABLE_DIFFS  = 1
 OPTPASSES     += $(TRACEFLAGS)
@@ -145,6 +147,11 @@
 ifndef DISABLE_CBE
 all:: $(CBEOUTPUT)
 endif
+ifndef DISABLE_JIT
+all:: $(JITOUTPUT)
+endif
+
+.PRECIOUS: $(LLIOUTPUT) $(JITOUTPUT) $(LLCOUTPUT) $(CBEOUTPUT)
 endif
 
 ifndef DISABLE_LLC





More information about the llvm-commits mailing list