From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 9D3E23858C2C; Wed, 22 Dec 2021 11:07:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9D3E23858C2C MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-6095] docs: docs: use '; ' for function declarations. (part 2) X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 1a6592ff65e443e66d943103d05701cafdda9149 X-Git-Newrev: 3892cfee77ebe949ff640d9759a4b5cead67e3a8 Message-Id: <20211222110754.9D3E23858C2C@sourceware.org> Date: Wed, 22 Dec 2021 11:07:54 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Dec 2021 11:07:54 -0000 https://gcc.gnu.org/g:3892cfee77ebe949ff640d9759a4b5cead67e3a8 commit r12-6095-g3892cfee77ebe949ff640d9759a4b5cead67e3a8 Author: Martin Liska Date: Wed Dec 22 12:06:53 2021 +0100 docs: docs: use ';' for function declarations. (part 2) gcc/ChangeLog: * doc/extend.texi: Unify all function declarations in examples where some miss trailing ';'. Diff: --- gcc/doc/extend.texi | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 7e5791b67c5..465e1f5c858 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -14570,15 +14570,15 @@ instructions, but allow the compiler to schedule those calls. These built-in functions are available for the AArch64 family of processors. @smallexample -unsigned int __builtin_aarch64_get_fpcr () -void __builtin_aarch64_set_fpcr (unsigned int) -unsigned int __builtin_aarch64_get_fpsr () -void __builtin_aarch64_set_fpsr (unsigned int) - -unsigned long long __builtin_aarch64_get_fpcr64 () -void __builtin_aarch64_set_fpcr64 (unsigned long long) -unsigned long long __builtin_aarch64_get_fpsr64 () -void __builtin_aarch64_set_fpsr64 (unsigned long long) +unsigned int __builtin_aarch64_get_fpcr (); +void __builtin_aarch64_set_fpcr (unsigned int); +unsigned int __builtin_aarch64_get_fpsr (); +void __builtin_aarch64_set_fpsr (unsigned int); + +unsigned long long __builtin_aarch64_get_fpcr64 (); +void __builtin_aarch64_set_fpcr64 (unsigned long long); +unsigned long long __builtin_aarch64_get_fpsr64 (); +void __builtin_aarch64_set_fpsr64 (unsigned long long); @end smallexample @node Alpha Built-in Functions