diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2000-02-17 04:40:47 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-02-16 21:40:47 -0700 |
commit | 3912a603d82bd2bf2682a7936c631b84be199fa4 (patch) | |
tree | 93a824a2b3bcfaadbb9bcbb75e67cbd6a4bf1142 | |
parent | 762f069d63c737ccda7d256ac16084793754003c (diff) | |
download | gcc-3912a603d82bd2bf2682a7936c631b84be199fa4.tar.gz |
* longlong.h (__clz_tab): Declare as static to match definition.
From-SVN: r32029
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/longlong.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3f9a34a84e1..f5f77ca1beb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 16 21:40:04 2000 Hans-Peter Nilsson <hp@bitrange.com> + + * longlong.h (__clz_tab): Declare as static to match definition. + 2000-02-16 Mark Elbrecht <snowball3@bigfoot.com> * i386/xm-djgpp.h (LIBSTDCXX): Delete. Moved to config/i386/djgpp.h. (XREF_FILE_NAME): Define. diff --git a/gcc/longlong.h b/gcc/longlong.h index 467175023a2..796ebe2d07f 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -1,5 +1,5 @@ /* longlong.h -- definitions for mixed size 32/64 bit arithmetic. - Copyright (C) 1991,92,94,95,96,97,98,99 Free Software Foundation, Inc. + Copyright (C) 1991,92,94,95,96,97,98,99, 2000 Free Software Foundation, Inc. This definition file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public @@ -1444,7 +1444,7 @@ UDItype __umulsidi3 (USItype, USItype); #endif #if !defined (count_leading_zeros) -extern const UQItype __clz_tab[]; +static const UQItype __clz_tab[]; #define count_leading_zeros(count, x) \ do { \ UWtype __xr = (x); \ |