diff options
author | Martin Liska <mliska@suse.cz> | 2022-01-03 11:57:07 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-01-03 11:57:33 +0100 |
commit | bd5b0fca54341545ecf83f6775fc471f6f174142 (patch) | |
tree | 91d96fdb604928459950748b3c890c5acadba652 /gcc | |
parent | 134442b2178a164ed4580255a0de007dda19b855 (diff) | |
download | gcc-bd5b0fca54341545ecf83f6775fc471f6f174142.zip gcc-bd5b0fca54341545ecf83f6775fc471f6f174142.tar.gz gcc-bd5b0fca54341545ecf83f6775fc471f6f174142.tar.bz2 |
docs: Use ; for function declarations.
gcc/ChangeLog:
* doc/extend.texi: Use ; for function declarations.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/doc/extend.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 01d4c8d..c430741 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -15385,8 +15385,8 @@ These built-in functions are available for the ARM family of processors with floating-point unit. @smallexample -unsigned int __builtin_arm_get_fpscr () -void __builtin_arm_set_fpscr (unsigned int) +unsigned int __builtin_arm_get_fpscr (); +void __builtin_arm_set_fpscr (unsigned int); @end smallexample @node ARM ARMv8-M Security Extensions |