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

Chris Lattner sabre at nondot.org
Sat Nov 18 11:32:43 PST 2006



Changes in directory llvm-test:

Makefile.programs updated: 1.239 -> 1.240
---
Log message:

When comparing LLC to CBE, we're only interested in codegen differences, we
don't want GCC's inliner to factor into the picture.


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

 Makefile.programs |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm-test/Makefile.programs
diff -u llvm-test/Makefile.programs:1.239 llvm-test/Makefile.programs:1.240
--- llvm-test/Makefile.programs:1.239	Wed Nov 15 21:49:51 2006
+++ llvm-test/Makefile.programs	Sat Nov 18 13:32:28 2006
@@ -290,7 +290,7 @@
 
 $(PROGRAMS_TO_TEST:%=Output/%.cbe): \
 Output/%.cbe: Output/%.cbe.c
-	-$(CC) $< $(LDFLAGS) $(CFLAGS) -fno-strict-aliasing -O2 $(TARGET_FLAGS) -o $@
+	-$(CC) $< $(LDFLAGS) $(CFLAGS) -fno-strict-aliasing -O2 -fno-inline $(TARGET_FLAGS) -o $@
 
 #
 # Compile a linked program to machine code with LLC.






More information about the llvm-commits mailing list