Commit cf0eb7a1 by Alexandre Oliva Committed by Alexandre Oliva

configure.ac: Remove excess quoting from asm line 0 test.

* configure.ac: Remove excess quoting from asm line 0 test.
* configure: Rebuilt.

From-SVN: r123006
parent 07231d4f
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> 2007-03-16 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* doc/invoke.texi (-Wconversion): Document warnings specific to C++. * doc/invoke.texi (-Wconversion): Document warnings specific to C++.
......
...@@ -16045,8 +16045,8 @@ if test "${gcc_cv_as_line_zero+set}" = set; then ...@@ -16045,8 +16045,8 @@ if test "${gcc_cv_as_line_zero+set}" = set; then
else else
gcc_cv_as_line_zero=no gcc_cv_as_line_zero=no
if test $in_tree_gas = yes; then 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 + ` if test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 16 \) \* 1000 + 91`
then : then gcc_cv_as_line_zero=yes
fi fi
elif test "x$gcc_cv_as" != x; then elif test "x$gcc_cv_as" != x; then
{ echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s { echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
......
...@@ -3079,7 +3079,7 @@ AC_CACHE_CHECK([assembler for tolerance to line number 0], ...@@ -3079,7 +3079,7 @@ AC_CACHE_CHECK([assembler for tolerance to line number 0],
[gcc_cv_as_line_zero], [gcc_cv_as_line_zero],
[gcc_cv_as_line_zero=no [gcc_cv_as_line_zero=no
if test $in_tree_gas = yes; then 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 elif test "x$gcc_cv_as" != x; then
{ echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s { 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]) && 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