]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2012-10-29 Robert Dewar <dewar@adacore.com>
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 29 Oct 2012 11:19:30 +0000 (11:19 +0000)
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 29 Oct 2012 11:19:30 +0000 (11:19 +0000)
* s-tpoben.ads, s-taskin.ads, exp_ch3.adb: Minor reformatting.

2012-10-29  Yannick Moy  <moy@adacore.com>

* sem_prag.adb, gnat1drv.adb, opt.ads: Rename S14_Extensions
into Formal_Extensions.

2012-10-29  Thomas Quinot  <quinot@adacore.com>

* sem_attr.adb: Minor reformatting.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192934 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/ChangeLog
gcc/ada/exp_ch3.adb
gcc/ada/gnat1drv.adb
gcc/ada/opt.ads
gcc/ada/s-taskin.ads
gcc/ada/s-tpoben.ads
gcc/ada/sem_attr.adb
gcc/ada/sem_prag.adb

index f83800cb018aceeaf429bcdfebda40b0be629c6e..8546a3461c027529cfbe7970bea02ca0394fc0a2 100644 (file)
@@ -1,3 +1,16 @@
+2012-10-29  Robert Dewar  <dewar@adacore.com>
+
+       * s-tpoben.ads, s-taskin.ads, exp_ch3.adb: Minor reformatting.
+
+2012-10-29  Yannick Moy  <moy@adacore.com>
+
+       * sem_prag.adb, gnat1drv.adb, opt.ads: Rename S14_Extensions
+       into Formal_Extensions.
+
+2012-10-29  Thomas Quinot  <quinot@adacore.com>
+
+       * sem_attr.adb: Minor reformatting.
+
 2012-10-29  Tristan Gingold  <gingold@adacore.com>
 
        * gnat_rm.texi: Document implementation advice for Pragma
index fdf3185cede4c4622f3f493ff5b329bbe12f4ff7..f7081a6480d01ed972518862c0f8da2afc0652bb 100644 (file)
@@ -3101,8 +3101,7 @@ package body Exp_Ch3 is
 
                      Clean_Task_Names (Typ, Proc_Id);
 
-                     --  Preserve the initialization state in the current
-                     --  counter.
+                     --  Preserve initialization state in the current counter
 
                      if Needs_Finalization (Typ) then
                         if No (Counter_Id) then
index 39d008e23a752d2ab1e78b7e0e88e0c2e623f494..47c4b177f01cd53a6171f961de44d67d233bf506 100644 (file)
@@ -419,7 +419,7 @@ procedure Gnat1drv is
       --  Set switches for formal verification mode
 
       if Debug_Flag_Dot_VV then
-         S14_Extensions := True;
+         Formal_Extensions := True;
       end if;
 
       if Debug_Flag_Dot_FF then
index b832c1fd0b97320e6fe7954b121534a749e5a43a..9221be94e04a177c36d58358720c7a2cf7832ee9 100644 (file)
@@ -1936,7 +1936,7 @@ package Opt is
    --  for integers are limited to the strict minimum with this option. Set by
    --  debug flag -gnatd.D.
 
-   S14_Extensions : Boolean := False;
+   Formal_Extensions : Boolean := False;
    --  When this flag is set, new aspects/pragmas/attributes are accepted,
    --  whose main purpose is to facilitate formal verification. Set by debug
    --  flag -gnatd.V.
index 9584901d3e7c9a200f05517fa20f737403ef64b1..03533a8bf3ac43f56d65e08cd8fb6051be5c2e62 100644 (file)
@@ -1209,7 +1209,6 @@ private
    procedure Set_Entry_Names
      (Self_Id : Task_Id;
       Names   : Task_Entry_Names_Access);
-   --  Associate an array of string that denote entry [family] names with a
-   --  task.
+   --  Associate an array of strings denotinge entry [family] names with a task
 
 end System.Tasking;
index acdf69fbee92082b46fe9c08b7fbcfaf5e60f304..b41f1caeb949090639e22a3de394563491181c9d 100644 (file)
@@ -59,34 +59,30 @@ package System.Tasking.Protected_Objects.Entries is
 
    type Protected_Entry_Body_Array is
      array (Positive_Protected_Entry_Index range <>) of Entry_Body;
-   --  This is an array of the executable code for all entry bodies of
-   --  a protected type.
+   --  Contains executable code for all entry bodies of a protected type
 
    type Protected_Entry_Body_Access is access all Protected_Entry_Body_Array;
 
    type Protected_Entry_Queue_Array is
      array (Protected_Entry_Index range <>) of Entry_Queue;
 
-   --  A data structure which contains the string names of entries and entry
-   --  family members.
-
    type Protected_Entry_Names_Array is
      array (Protected_Entry_Index range <>) of String_Access;
-
    type Protected_Entry_Names_Access is access all Protected_Entry_Names_Array;
+   --  Contains string name of entries and entry family members
 
-   --  This type contains the GNARL state of a protected object. The
-   --  application-defined portion of the state (i.e. private objects)
-   --  is maintained by the compiler-generated code.
-   --  note that there is a simplified version of this type declared in
-   --  System.Tasking.PO_Simple that handle the simple case (no entries).
+   --  The following type contains the GNARL state of a protected object.
+   --  The application-defined portion of the state (i.e. private objects)
+   --  is maintained by the compiler-generated code. Note that there is a
+   --  simplified version of this type declared in System.Tasking.PO_Simple
+   --  that handle the simple case (no entries).
 
    type Protection_Entries (Num_Entries : Protected_Entry_Index) is new
      Ada.Finalization.Limited_Controlled
    with record
-      L                 : aliased Task_Primitives.Lock;
-      --  The underlying lock associated with a Protection_Entries.
-      --  Note that you should never (un)lock Object.L directly, but instead
+      L : aliased Task_Primitives.Lock;
+      --  The underlying lock associated with a Protection_Entries. Note
+      --  that you should never (un)lock Object.L directly, but instead
       --  use Lock_Entries/Unlock_Entries.
 
       Compiler_Info : System.Address;
@@ -150,8 +146,8 @@ package System.Tasking.Protected_Objects.Entries is
       --  Entries components.
    end record;
 
-   --  No default initial values for this type, since call records
-   --  will need to be re-initialized before every use.
+   --  No default initial values for this type, since call records will need to
+   --  be re-initialized before every use.
 
    type Protection_Entries_Access is access all Protection_Entries'Class;
    --  See comments in s-tassta.adb about the implicit call to Current_Master
index 5b1585a39824190d84a4c0b9e83bb5c9fb86153f..4118087d5f66a66d21b413252e9b204e60274a7a 100644 (file)
@@ -646,8 +646,8 @@ package body Sem_Attr is
                Kill_Current_Values;
             end if;
 
-            --  Treat as call for elaboration purposes and we are all
-            --  done. Suppress this treatment under debug flag.
+            --  Treat as call for elaboration purposes and we are all done.
+            --  Suppress this treatment under debug flag.
 
             if not Debug_Flag_Dot_UU then
                Check_Elab_Call (N);
index 7f098abf6acfb202b0d114858124f7e3a8e6a57d..aee77f9c22ecdcec30a732330e67a881d0f81946 100644 (file)
@@ -6430,7 +6430,7 @@ package body Sem_Prag is
 
       procedure S14_Pragma is
       begin
-         if not S14_Extensions then
+         if not Formal_Extensions then
             Error_Pragma ("pragma% requires the use of debug switch -gnatd.V");
          end if;
       end S14_Pragma;