configure.ac: Don't require ELF binutils to tolerate # 0 "".
authorAlexandre Oliva <aoliva@redhat.com>
Fri, 16 Mar 2007 05:50:58 +0000 (05:50 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Fri, 16 Mar 2007 05:50:58 +0000 (05:50 +0000)
* configure.ac: Don't require ELF binutils to tolerate # 0 "".
* configure: Rebuilt.

From-SVN: r122978

gcc/ChangeLog
gcc/configure
gcc/configure.ac

index c1aa2e0..6f51361 100644 (file)
@@ -1,5 +1,10 @@
 2007-03-16  Alexandre Oliva  <aoliva@redhat.com>
 
+       * configure.ac: Don't require ELF binutils to tolerate # 0 "".
+       * configure: Rebuilt.
+
+2007-03-16  Alexandre Oliva  <aoliva@redhat.com>
+
        PR debug/29906
        * dwarf2out.c (force_type_die): Adjust comment.
        (dwarf2out_imported_module_or_decl): Handle base AT_import types.
index de3f628..1425636 100755 (executable)
@@ -16045,7 +16045,7 @@ 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 \( \( elf,2,16,91 \* 1000 \) + gcc_cv_as_line_zero=yes \) \* 1000 + `
+    if test $gcc_cv_gas_vers -ge `expr \( \( 2,16,91 \* 1000 \) + gcc_cv_as_line_zero=yes \) \* 1000 + `
   then :
 fi
   elif test "x$gcc_cv_as" != x; then
index 18134ca..7c16f93 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([elf,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]) &&