summaryrefslogtreecommitdiff
path: root/gcc/ada/sem_ch12.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-05-21 13:17:41 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-05-21 13:17:41 +0000
commit94113d9e2c4de9debc3fce7b201fb8a49098d4d7 (patch)
tree8518dcc114d93e7e6fc82307b2f1180d04985e23 /gcc/ada/sem_ch12.adb
parent72b225ec21351d5b734753f8353264f5223ee06a (diff)
downloadgcc-94113d9e2c4de9debc3fce7b201fb8a49098d4d7.tar.gz
2014-05-21 Robert Dewar <dewar@adacore.com>
* sinfo.ads, sem_ch12.adb, sem_warn.adb: Minor reformatting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210706 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/sem_ch12.adb')
-rw-r--r--gcc/ada/sem_ch12.adb21
1 files changed, 13 insertions, 8 deletions
diff --git a/gcc/ada/sem_ch12.adb b/gcc/ada/sem_ch12.adb
index 057f088cd70..2d7487667bc 100644
--- a/gcc/ada/sem_ch12.adb
+++ b/gcc/ada/sem_ch12.adb
@@ -9946,6 +9946,10 @@ package body Sem_Ch12 is
-- appear uninitialized. This is suspicious, unless the actual is a
-- fully initialized type.
+ -----------------------------
+ -- Check_Initialized_Types --
+ -----------------------------
+
procedure Check_Initialized_Types is
Decl : Node_Id;
Formal : Entity_Id;
@@ -9958,11 +9962,10 @@ package body Sem_Ch12 is
and then Needs_Initialized_Actual (Decl))
or else (Nkind (Decl) = N_Formal_Type_Declaration
- and then
- Nkind (Formal_Type_Definition (Decl)) =
- N_Formal_Private_Type_Definition
- and then Needs_Initialized_Actual
- (Formal_Type_Definition (Decl)))
+ and then Nkind (Formal_Type_Definition (Decl)) =
+ N_Formal_Private_Type_Definition
+ and then Needs_Initialized_Actual
+ (Formal_Type_Definition (Decl)))
then
Formal := Defining_Identifier (Decl);
Actual := First_Entity (Act_Decl_Id);
@@ -9980,9 +9983,8 @@ package body Sem_Ch12 is
and then Warn_On_No_Value_Assigned
then
Error_Msg_NE
- ("from its use in generic unit, actual for&"
- & " should be fully initialized type?",
- Actual, Formal);
+ ("from its use in generic unit, actual for& should "
+ & "be fully initialized type??", Actual, Formal);
exit;
end if;
@@ -9993,6 +9995,9 @@ package body Sem_Ch12 is
Next (Decl);
end loop;
end Check_Initialized_Types;
+
+ -- Start of processing for Instantiate_Package_Body
+
begin
Gen_Body_Id := Corresponding_Body (Gen_Decl);