diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-27 05:39:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-27 05:39:00 +0000 |
commit | 74878f4f3a0eef017f1ee04e2da738aa5f4ee43a (patch) | |
tree | 05f775a631bfd70cbc14bf17e1ab68b83d50433b /configure | |
parent | 3e88a4d700d912e9a5d91f22f4f9026783aec709 (diff) |
Use -emit-llvm -S to get .ll file output from llvm-gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26397 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 1a04edd8221..ec46bd3db4e 100755 --- a/configure +++ b/configure @@ -30613,7 +30613,7 @@ else 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 |