diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2012-08-06 09:54:34 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2012-08-06 09:54:34 +0200 |
commit | b5ee491c7bf77f6355ae205dfd5779ac7ed6a00d (patch) | |
tree | 99f3788633024115029c61a040d517c1114ede2c /gcc | |
parent | f2c992d90657ab72fd3edcf0e99a1d615edfacde (diff) | |
download | gcc-b5ee491c7bf77f6355ae205dfd5779ac7ed6a00d.zip gcc-b5ee491c7bf77f6355ae205dfd5779ac7ed6a00d.tar.gz gcc-b5ee491c7bf77f6355ae205dfd5779ac7ed6a00d.tar.bz2 |
[multiple changes]
2012-08-06 Vincent Pucci <pucci@adacore.com>
* s-atopri.adb: Minor reformatting.
2012-08-06 Arnaud Charlet <charlet@adacore.com>
* gnat-style.texi: Clarify that all subprograms should be
documented. Minor rewording.
From-SVN: r190160
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/ada/gnat-style.texi | 17 | ||||
-rw-r--r-- | gcc/ada/s-atopri.adb | 12 |
3 files changed, 25 insertions, 13 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 7c44193..93bfb45 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,12 @@ +2012-08-06 Vincent Pucci <pucci@adacore.com> + + * s-atopri.adb: Minor reformatting. + +2012-08-06 Arnaud Charlet <charlet@adacore.com> + + * gnat-style.texi: Clarify that all subprograms should be + documented. Minor rewording. + 2012-08-06 Robert Dewar <dewar@adacore.com> * aspects.ads: Define Aspect_Id_Exclude_No_Aspect. diff --git a/gcc/ada/gnat-style.texi b/gcc/ada/gnat-style.texi index 63882af..43e6b43 100644 --- a/gcc/ada/gnat-style.texi +++ b/gcc/ada/gnat-style.texi @@ -351,8 +351,8 @@ Local names can be shorter, because they are used only within one context, where comments explain their purpose. @item -When starting a default expression on the line that follows the declaration -line, use 2 characters for indentation. +When starting an initialization or default expression on the line that follows +the declaration line, use 2 characters for indentation. @smallexample @c adanocomment Entity1 : Integer := @@ -360,12 +360,12 @@ line, use 2 characters for indentation. @end smallexample @item -If a default expression needs to be continued on subsequent lines, the -continuations should be indented from the start of the expression. +If an initialization or default expression needs to be continued on subsequent +lines, the continuations should be indented from the start of the expression. @smallexample @c adanocomment - Entity1 : Integer := Long_Function_Name - (parameters for call); + Entity1 : Integer := Long_Function_Name + (parameters for call); @end smallexample @end itemize @@ -738,7 +738,10 @@ also be used as headers for sections of comments, or collections of declarations that are related. @item -Every subprogram body must have a preceding @syntax{subprogram_declaration}. +Every subprogram body must have a preceding @syntax{subprogram_declaration}, +which includes proper client documentation so that you do not need to +read the subprogram body in order to understand what the subprogram does and +how to call it. All subprograms should be documented, without exceptions. @item @cindex Blank lines (in subprogram bodies) diff --git a/gcc/ada/s-atopri.adb b/gcc/ada/s-atopri.adb index d856c8c..50e7346 100644 --- a/gcc/ada/s-atopri.adb +++ b/gcc/ada/s-atopri.adb @@ -44,9 +44,9 @@ package body System.Atomic_Primitives is end if; end Lock_Free_Read_8; - ---------------------- + ----------------------- -- Lock_Free_Read_16 -- - ---------------------- + ----------------------- function Lock_Free_Read_16 (Ptr : Address) return uint16 is begin @@ -57,9 +57,9 @@ package body System.Atomic_Primitives is end if; end Lock_Free_Read_16; - ---------------------- + ----------------------- -- Lock_Free_Read_32 -- - ---------------------- + ----------------------- function Lock_Free_Read_32 (Ptr : Address) return uint32 is begin @@ -70,9 +70,9 @@ package body System.Atomic_Primitives is end if; end Lock_Free_Read_32; - ---------------------- + ----------------------- -- Lock_Free_Read_64 -- - ---------------------- + ----------------------- function Lock_Free_Read_64 (Ptr : Address) return uint64 is begin |