configure.ac: Remove excess quoting from asm line 0 test.
authorAlexandre Oliva <aoliva@redhat.com>
Fri, 16 Mar 2007 23:44:42 +0000 (23:44 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Fri, 16 Mar 2007 23:44:42 +0000 (23:44 +0000)
* configure.ac: Remove excess quoting from asm line 0 test.
* configure: Rebuilt.

From-SVN: r123006

gcc/ChangeLog
gcc/configure
gcc/configure.ac

index 008e18c..86f1aca 100644 (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++.
index 1425636..0cecbcd 100755 (executable)
@@ -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
index 7c16f93..f3a6236 100644 (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]) &&