configure.ac: Remove excess quoting from asm line 0 test.

* configure.ac: Remove excess quoting from asm line 0 test.
* configure: Rebuilt.

From-SVN: r123006
This commit is contained in:
Alexandre Oliva 2007-03-16 23:44:42 +00:00 committed by Alexandre Oliva
parent 07231d4f83
commit cf0eb7a12b
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-03-16 Alexandre Oliva <aoliva@redhat.com>
* configure.ac: Remove excess quoting from asm line 0 test.
* configure: Rebuilt.
2007-03-16 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* doc/invoke.texi (-Wconversion): Document warnings specific to C++.

4
gcc/configure vendored
View File

@ -16045,8 +16045,8 @@ if test "${gcc_cv_as_line_zero+set}" = set; then
else
gcc_cv_as_line_zero=no
if test $in_tree_gas = yes; then
if test $gcc_cv_gas_vers -ge `expr \( \( 2,16,91 \* 1000 \) + gcc_cv_as_line_zero=yes \) \* 1000 + `
then :
if test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 16 \) \* 1000 + 91`
then gcc_cv_as_line_zero=yes
fi
elif test "x$gcc_cv_as" != x; then
{ echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s

View File

@ -3079,7 +3079,7 @@ AC_CACHE_CHECK([assembler for tolerance to line number 0],
[gcc_cv_as_line_zero],
[gcc_cv_as_line_zero=no
if test $in_tree_gas = yes; then
gcc_GAS_VERSION_GTE_IFELSE([2,16,91], [gcc_cv_as_line_zero=yes])
gcc_GAS_VERSION_GTE_IFELSE(2, 16, 91, [gcc_cv_as_line_zero=yes])
elif test "x$gcc_cv_as" != x; then
{ echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
if AC_TRY_COMMAND([$gcc_cv_as -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD 2>conftest.out]) &&