aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2007-03-16 23:44:42 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2007-03-16 23:44:42 +0000
commitcf0eb7a12b92a789c6bd20ed459c764a8ad6bb23 (patch)
tree79df8e468cfd64386f9237485b13288749182f6f /gcc
parent07231d4f834e1286c28f28bd18065fdde30912ba (diff)
downloadgcc-cf0eb7a12b92a789c6bd20ed459c764a8ad6bb23.zip
gcc-cf0eb7a12b92a789c6bd20ed459c764a8ad6bb23.tar.gz
gcc-cf0eb7a12b92a789c6bd20ed459c764a8ad6bb23.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure4
-rw-r--r--gcc/configure.ac2
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 008e18c..86f1aca 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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++.
diff --git a/gcc/configure b/gcc/configure
index 1425636..0cecbcd 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -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
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 7c16f93..f3a6236 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([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]) &&