[llvm-commits] CVS: llvm/configure
Chris Lattner
lattner at cs.uiuc.edu
Sun Feb 26 21:39:14 PST 2006
Changes in directory llvm:
configure updated: 1.212 -> 1.213
---
Log message:
Use -emit-llvm -S to get .ll file output from llvm-gcc
---
Diffs of the changes: (+1 -1)
configure | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/configure
diff -u llvm/configure:1.212 llvm/configure:1.213
--- llvm/configure:1.212 Thu Feb 16 15:12:54 2006
+++ llvm/configure Sun Feb 26 23:39:00 2006
@@ -30613,7 +30613,7 @@
llvm_cv_llvmgcc_sanity="no"
if test -x "$LLVMGCC" ; then
cp /dev/null conftest.c
- "$LLVMGCC" -S -o - conftest.c | grep implementation > /dev/null 2>&1
+ "$LLVMGCC" -emit-llvm -S -o - conftest.c | grep implementation > /dev/null 2>&1
if test $? -eq 0 ; then
llvm_cv_llvmgcc_sanity="yes"
fi
More information about the llvm-commits
mailing list