Regenerate for PR1283 fix.

llvm-svn: 35452
This commit is contained in:
Reid Spencer 2007-03-29 15:38:33 +00:00
parent 1a48abc2d4
commit 908f777886
1 changed files with 2 additions and 1 deletions

3
llvm/configure vendored
View File

@ -33440,7 +33440,8 @@ else
llvm_cv_llvmgcc_sanity="no"
if test -x "$LLVMGCC" ; then
cp /dev/null conftest.c
"$LLVMGCC" -emit-llvm -S -o - conftest.c | grep implementation > /dev/null 2>&1
"$LLVMGCC" -emit-llvm -S -o - conftest.c | \
grep 'target datalayout =' > /dev/null 2>&1
if test $? -eq 0 ; then
llvm_cv_llvmgcc_sanity="yes"
fi