_mulkc3.c (__mulkc3): Add forward declaration.
authorMichael Meissner <meissner@linux.vnet.ibm.com>
Fri, 1 Dec 2017 05:32:39 +0000 (05:32 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Fri, 1 Dec 2017 05:32:39 +0000 (05:32 +0000)
2017-11-30  Michael Meissner  <meissner@linux.vnet.ibm.com>

* config/rs6000/_mulkc3.c (__mulkc3): Add forward declaration.
* config/rs6000/_divkc3.c (__divkc3): Likewise.

From-SVN: r255289

libgcc/ChangeLog
libgcc/config/rs6000/_divkc3.c
libgcc/config/rs6000/_mulkc3.c

index e103ace8fcf545db742f86fd08ae44a193d40353..3d8b73e1c4a26a216eebce88f2c25159a24a051b 100644 (file)
@@ -1,5 +1,8 @@
 2017-11-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
+       * config/rs6000/_mulkc3.c (__mulkc3): Add forward declaration.
+       * config/rs6000/_divkc3.c (__divkc3): Likewise.
+
        PR libgcc/83112
        * config/rs6000/float128-ifunc.c (__addkf3_resolve): Use the
        correct type for all ifunc resolvers to silence -Wattribute-alias
index 5c477f4d0b886857d457ece752ce56454e0330fa..800389b169bd46c07518e192d323aacde8cd81ce 100644 (file)
@@ -37,6 +37,8 @@ typedef __complex float KCtype __attribute__ ((mode (KC)));
 #define __divkc3 __divkc3_sw
 #endif
 
+extern KCtype __divkc3 (KFtype, KFtype, KFtype, KFtype);
+
 KCtype
 __divkc3 (KFtype a, KFtype b, KFtype c, KFtype d)
 {
index a88fae216613cd5243b4a6ce47f844783ac402ff..c2687bee97b470a7525c064499926ca3accae56a 100644 (file)
@@ -35,6 +35,8 @@ typedef __complex float KCtype __attribute__ ((mode (KC)));
 #define __mulkc3 __mulkc3_sw
 #endif
 
+extern KCtype __mulkc3 (KFtype, KFtype, KFtype, KFtype);
+
 KCtype
 __mulkc3 (KFtype a, KFtype b, KFtype c, KFtype d)
 {