mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-05 03:56:47 +08:00
clzhi2.c: Fix warnings.
* config/h8300/clzhi2.c: Fix warnings. * config/h8300/ctzhi2.c: Likewise. * config/h8300/fixunssfsi.c: Likewise. * config/h8300/parityhi2.c: Likewise. * config/h8300/popcounthi2.c: Likewise. From-SVN: r72864
This commit is contained in:
parent
e11f4e4d0b
commit
846d57c7d1
@ -1,4 +1,4 @@
|
||||
2003-10-21 Kazu Hirata <kazu@cs.umass.edu>
|
||||
2003-10-23 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/h8300/clzhi2.c: Fix warnings.
|
||||
* config/h8300/ctzhi2.c: Likewise.
|
||||
|
@ -27,6 +27,8 @@ along with GCC; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
int __clzhi2 (unsigned short x);
|
||||
|
||||
int
|
||||
__clzhi2 (unsigned short x)
|
||||
{
|
||||
|
@ -27,6 +27,8 @@ along with GCC; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
int __ctzhi2 (unsigned short x);
|
||||
|
||||
int
|
||||
__ctzhi2 (unsigned short x)
|
||||
{
|
||||
|
@ -33,6 +33,8 @@ Boston, MA 02111-1307, USA. */
|
||||
the H8/300, that's in lib1funcs.asm, for H8/300H and H8S, it's here. */
|
||||
|
||||
#ifndef __H8300__
|
||||
long __fixunssfsi (float a);
|
||||
|
||||
long
|
||||
__fixunssfsi (float a)
|
||||
{
|
||||
|
@ -27,6 +27,8 @@ along with GCC; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
int __parityhi2 (unsigned short x);
|
||||
|
||||
int
|
||||
__parityhi2 (unsigned short x)
|
||||
{
|
||||
|
@ -27,6 +27,8 @@ along with GCC; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
int __popcounthi2 (unsigned short x);
|
||||
|
||||
int
|
||||
__popcounthi2 (unsigned short x)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user