Commit 43bc306a by Alexandre Oliva Committed by Alexandre Oliva

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
parent 8857ae1c
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.
......
......@@ -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
......
......@@ -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]) &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment