From c940105cc17111be98d8d42ba48a413b0e63aebe Mon Sep 17 00:00:00 2001 From: Bill Schmidt Date: Thu, 6 Feb 2020 07:58:42 -0600 Subject: [PATCH] Fix PowerPC prototype documentation of __builtin_mtfsf (PR93570) PR93570 reports that the documentation shows __builtin_mtfsf to return a double, but this is incorrect. The return signature should be void. 2020-02-06 Bill Schmidt PR target/93570 * doc/extend.texi (Basic PowerPC Built-in Functions): Correct prototype for __builtin_mtfsf. --- gcc/doc/extend.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index ec99c38a607..5739063b330 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -17166,7 +17166,7 @@ unsigned long __builtin_ppc_mftb (); double __builtin_unpack_ibm128 (__ibm128, int); __ibm128 __builtin_pack_ibm128 (double, double); double __builtin_mffs (void); -double __builtin_mtfsf (const int, double); +void __builtin_mtfsf (const int, double); void __builtin_mtfsb0 (const int); void __builtin_mtfsb1 (const int); void __builtin_set_fpscr_rn (int); -- 2.30.2