[llvm-commits] CVS: llvm-test/External/Makefile.external

Reid Spencer reid at x10sys.com
Fri Feb 2 20:30:41 PST 2007



Changes in directory llvm-test/External:

Makefile.external updated: 1.3 -> 1.4
---
Log message:

For PR1159: http://llvm.org/PR1159 :
Avoid going to LLVM assembly files at all to improve performance of the
nightly test. Bytecode is now processed like this:

llvm-gcc -c -emit-llvm %.c -o %.bc
gccld -disable-opt -link-as-library *.bc -o %.linked.rbc
opt -std-compile-opts %.linked.rbc -o %.linked.bc
gccld %.linked.bc -o %.llvm

This eliminates one gccas invocation for each source file compilation, and 
two translations between .ll and .bc.


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

 Makefile.external |    1 -
 1 files changed, 1 deletion(-)


Index: llvm-test/External/Makefile.external
diff -u llvm-test/External/Makefile.external:1.3 llvm-test/External/Makefile.external:1.4
--- llvm-test/External/Makefile.external:1.3	Sun Sep  5 02:56:51 2004
+++ llvm-test/External/Makefile.external	Fri Feb  2 22:30:17 2007
@@ -7,4 +7,3 @@
 ##===----------------------------------------------------------------------===##
 
 include $(LEVEL)/Makefile.programs
-.PRECIOUS: Output/%.linked.rll






More information about the llvm-commits mailing list