Commit 6ae3512c by Michael Meissner Committed by Michael Meissner

_mulkc3.c (__mulkc3): Add forward declaration.

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
parent 5a1f4e57
2017-11-30 Michael Meissner <meissner@linux.vnet.ibm.com> 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 PR libgcc/83112
* config/rs6000/float128-ifunc.c (__addkf3_resolve): Use the * config/rs6000/float128-ifunc.c (__addkf3_resolve): Use the
correct type for all ifunc resolvers to silence -Wattribute-alias correct type for all ifunc resolvers to silence -Wattribute-alias
......
...@@ -37,6 +37,8 @@ typedef __complex float KCtype __attribute__ ((mode (KC))); ...@@ -37,6 +37,8 @@ typedef __complex float KCtype __attribute__ ((mode (KC)));
#define __divkc3 __divkc3_sw #define __divkc3 __divkc3_sw
#endif #endif
extern KCtype __divkc3 (KFtype, KFtype, KFtype, KFtype);
KCtype KCtype
__divkc3 (KFtype a, KFtype b, KFtype c, KFtype d) __divkc3 (KFtype a, KFtype b, KFtype c, KFtype d)
{ {
......
...@@ -35,6 +35,8 @@ typedef __complex float KCtype __attribute__ ((mode (KC))); ...@@ -35,6 +35,8 @@ typedef __complex float KCtype __attribute__ ((mode (KC)));
#define __mulkc3 __mulkc3_sw #define __mulkc3 __mulkc3_sw
#endif #endif
extern KCtype __mulkc3 (KFtype, KFtype, KFtype, KFtype);
KCtype KCtype
__mulkc3 (KFtype a, KFtype b, KFtype c, KFtype d) __mulkc3 (KFtype a, KFtype b, KFtype c, KFtype d)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment