]> gcc.gnu.org Git - gcc.git/commitdiff
clzhi2.c: Fix warnings.
authorKazu Hirata <kazu@cs.umass.edu>
Thu, 23 Oct 2003 19:30:47 +0000 (19:30 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Thu, 23 Oct 2003 19:30:47 +0000 (19:30 +0000)
* 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

gcc/ChangeLog
gcc/config/h8300/clzhi2.c
gcc/config/h8300/ctzhi2.c
gcc/config/h8300/fixunssfsi.c
gcc/config/h8300/parityhi2.c
gcc/config/h8300/popcounthi2.c

index f0e3d0f362c4d7eddc8d2a838dcf13c65ca65bbd..fbe40e1d5ee5a3157115697565ae4ac3fe5e94c2 100644 (file)
@@ -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.
index 2d75470247c3f88893b55f9a05824c13d6210799..46d689b59cd6fba3070fe3a4f985209defcc8ff8 100644 (file)
@@ -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)
 {
index e84c9ff2ea86f1d2ca7d4aadf283f473f2722a49..82ca726251f7cacd920872febc86d01eda90dc8d 100644 (file)
@@ -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)
 {
index 3668458d223a50769145fced49283c7f576e3568..06120ba4905d40cdf5089312ac084f0324a34031 100644 (file)
@@ -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)
 {
index 7b16fec595e68fbd4d57c8d433c916618bb7df44..44e2387184a4a2c35b9634d62734ca2573fa82f3 100644 (file)
@@ -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)
 {
index f9545872550cc37c7767720cb83d7cd9d5e31b7c..b2a560412fcd3f33d1ced647a04df56594bedcc5 100644 (file)
@@ -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)
 {
This page took 0.080112 seconds and 5 git commands to generate.