Commit dd7fc59c by Richard Henderson Committed by Richard Henderson

configure.in (gcc_cv_as_leb128): Tweek minor number extraction.

        * configure.in (gcc_cv_as_leb128): Tweek minor number extraction.
        * configure: Rebuilt.

From-SVN: r41087
parent c3fa1afd
2001-04-04 Richard Henderson <rth@redhat.com>
* configure.in (gcc_cv_as_leb128): Tweek minor number extraction.
* configure: Rebuilt.
2001-04-04 Zack Weinberg <zackw@stanford.edu> 2001-04-04 Zack Weinberg <zackw@stanford.edu>
* expr.h: Remove #ifdef FUNCTION_CONVERSION_BUG logic. * expr.h: Remove #ifdef FUNCTION_CONVERSION_BUG logic.
......
...@@ -6554,7 +6554,7 @@ EOF ...@@ -6554,7 +6554,7 @@ EOF
if echo "$as_ver" | grep GNU > /dev/null; then if echo "$as_ver" | grep GNU > /dev/null; then
as_ver=`echo $as_ver | sed -e 's/.* //'` as_ver=`echo $as_ver | sed -e 's/.* //'`
as_major=`echo $as_ver | sed 's/\..*//'` as_major=`echo $as_ver | sed 's/\..*//'`
as_minor=`echo $as_ver | sed 's/[^.]*.\([^.]*\).*/\1/'` as_minor=`echo $as_ver | sed 's/[^.]*.\([0-9]*\).*/\1/'`
if test $as_major -eq 2 -a $as_minor -lt 11; then if test $as_major -eq 2 -a $as_minor -lt 11; then
gcc_cv_as_leb128="no" gcc_cv_as_leb128="no"
fi fi
......
...@@ -1337,7 +1337,7 @@ EOF ...@@ -1337,7 +1337,7 @@ EOF
as_ver=`echo $as_ver | sed -e 's/.* //'` as_ver=`echo $as_ver | sed -e 's/.* //'`
as_major=`echo $as_ver | sed 's/\..*//'` as_major=`echo $as_ver | sed 's/\..*//'`
changequote(,)dnl changequote(,)dnl
as_minor=`echo $as_ver | sed 's/[^.]*.\([^.]*\).*/\1/'` as_minor=`echo $as_ver | sed 's/[^.]*.\([0-9]*\).*/\1/'`
changequote([,])dnl changequote([,])dnl
if test $as_major -eq 2 -a $as_minor -lt 11; then if test $as_major -eq 2 -a $as_minor -lt 11; then
gcc_cv_as_leb128="no" gcc_cv_as_leb128="no"
......
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