diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2007-03-16 05:50:58 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2007-03-16 05:50:58 +0000 |
commit | 43bc306a765beb7dbc2b87a0e88851a904c2d0a4 (patch) | |
tree | d169cb075494a30a53a08e35fbb94edaff3b9c5d | |
parent | 8857ae1c20b1a7efa789d7f95674043b3e49ac51 (diff) | |
download | gcc-43bc306a765beb7dbc2b87a0e88851a904c2d0a4.zip gcc-43bc306a765beb7dbc2b87a0e88851a904c2d0a4.tar.gz gcc-43bc306a765beb7dbc2b87a0e88851a904c2d0a4.tar.bz2 |
configure.ac: Don't require ELF binutils to tolerate # 0 "".
* configure.ac: Don't require ELF binutils to tolerate # 0 "".
* configure: Rebuilt.
From-SVN: r122978
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c1aa2e0..6f51361 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/configure b/gcc/configure index de3f628..1425636 100755 --- a/gcc/configure +++ b/gcc/configure @@ -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 diff --git a/gcc/configure.ac b/gcc/configure.ac index 18134ca..7c16f93 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([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]) && |