From: law Date: Thu, 17 Feb 2000 04:40:47 +0000 (+0000) Subject: * longlong.h (__clz_tab): Declare as static to match definition. X-Git-Tag: upstream/4.9.2~103169 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a952e94e79d02c5f983d0e9b720fba20242af693;p=platform%2Fupstream%2Flinaro-gcc.git * longlong.h (__clz_tab): Declare as static to match definition. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32029 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3f9a34a..f5f77ca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 16 21:40:04 2000 Hans-Peter Nilsson + + * longlong.h (__clz_tab): Declare as static to match definition. + 2000-02-16 Mark Elbrecht * 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 4671750..796ebe2 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); \