From 3892cfee77ebe949ff640d9759a4b5cead67e3a8 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 22 Dec 2021 12:06:53 +0100 Subject: [PATCH] docs: docs: use ';' for function declarations. (part 2) gcc/ChangeLog: * doc/extend.texi: Unify all function declarations in examples where some miss trailing ';'. --- 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 7e5791b..465e1f5 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 -- 2.7.4