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
This commit is contained in:
Richard Henderson 2001-04-04 09:48:58 -07:00 committed by Richard Henderson
parent c3fa1afd75
commit dd7fc59c36
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
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>
* expr.h: Remove #ifdef FUNCTION_CONVERSION_BUG logic.

2
gcc/configure vendored
View file

@ -6554,7 +6554,7 @@ EOF
if echo "$as_ver" | grep GNU > /dev/null; then
as_ver=`echo $as_ver | sed -e '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
gcc_cv_as_leb128="no"
fi

View file

@ -1337,7 +1337,7 @@ EOF
as_ver=`echo $as_ver | sed -e 's/.* //'`
as_major=`echo $as_ver | sed 's/\..*//'`
changequote(,)dnl
as_minor=`echo $as_ver | sed 's/[^.]*.\([^.]*\).*/\1/'`
as_minor=`echo $as_ver | sed 's/[^.]*.\([0-9]*\).*/\1/'`
changequote([,])dnl
if test $as_major -eq 2 -a $as_minor -lt 11; then
gcc_cv_as_leb128="no"