diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-27 17:11:39 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-27 17:11:39 +0000 |
commit | 3b918afe88944dabe0320865d2550ae001f7950a (patch) | |
tree | 3cf0ea32f12fac2537920d1fd8eb1cac1c8595e9 | |
parent | bc2b76e0ab76f7e34071e916b32c08da70b283aa (diff) | |
download | gcc-3b918afe88944dabe0320865d2550ae001f7950a.tar.gz |
* libgcc2.c (__popcount_tab): Remove redundant prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104702 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/libgcc2.c | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5b821c89f09..d0e34c8c45f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-09-27 Nick Clifton <nickc@redhat.com> + + * libgcc2.c (__popcount_tab): Remove redundant prototype. + 2005-09-26 Jason Merrill <jason@redhat.com> PR c++/13764 diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 5950cc9ed11..8838c308c7f 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -725,11 +725,6 @@ __ctzDI2 (UDWtype x) } #endif -#if (defined (L_popcountsi2) || defined (L_popcountdi2) \ - || defined (L_popcount_tab)) -extern const UQItype __popcount_tab[] ATTRIBUTE_HIDDEN; -#endif - #ifdef L_popcount_tab const UQItype __popcount_tab[256] = { |