From: aoliva Date: Fri, 16 Mar 2007 23:44:42 +0000 (+0000) Subject: * configure.ac: Remove excess quoting from asm line 0 test. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95cd4953351047c5c77cb32effe00aeae6697414;p=thirdparty%2Fgcc.git * configure.ac: Remove excess quoting from asm line 0 test. * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123006 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 008e18cc010a..86f1aca547a4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-16 Alexandre Oliva + + * configure.ac: Remove excess quoting from asm line 0 test. + * configure: Rebuilt. + 2007-03-16 Manuel Lopez-Ibanez * doc/invoke.texi (-Wconversion): Document warnings specific to C++. diff --git a/gcc/configure b/gcc/configure index 1425636d8f51..0cecbcdd30d1 100755 --- a/gcc/configure +++ b/gcc/configure @@ -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 diff --git a/gcc/configure.ac b/gcc/configure.ac index 7c16f935401f..f3a62363b6ef 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -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]) &&