Commit 767bb4e8 by Arnaud Charlet

[multiple changes]

2011-08-02  Robert Dewar  <dewar@adacore.com>

	* par-ch10.adb: Minor code reorganization (use Nkind_In).

2011-08-02  Ed Schonberg  <schonberg@adacore.com>

	* par-ch9.adb: save location of entry for proper error message.

From-SVN: r177088
parent 4ac2477e
2011-08-02 Robert Dewar <dewar@adacore.com>
* par-ch10.adb: Minor code reorganization (use Nkind_In).
2011-08-02 Ed Schonberg <schonberg@adacore.com>
* par-ch9.adb: save location of entry for proper error message.
2011-08-02 Javier Miranda <miranda@adacore.com> 2011-08-02 Javier Miranda <miranda@adacore.com>
* sem_type.ads, sem_type.adb (Is_Ancestor): Addition of a new formal * sem_type.ads, sem_type.adb (Is_Ancestor): Addition of a new formal
......
...@@ -508,9 +508,7 @@ package body Ch10 is ...@@ -508,9 +508,7 @@ package body Ch10 is
-- Another error from which it is hard to recover -- Another error from which it is hard to recover
if Nkind (Unit_Node) = N_Subprogram_Body_Stub if Nkind_In (Unit_Node, N_Subprogram_Body_Stub, N_Package_Body_Stub) then
or else Nkind (Unit_Node) = N_Package_Body_Stub
then
Cunit_Error_Flag := True; Cunit_Error_Flag := True;
return Error; return Error;
end if; end if;
...@@ -526,10 +524,10 @@ package body Ch10 is ...@@ -526,10 +524,10 @@ package body Ch10 is
Unit_Node := Specification (Unit_Node); Unit_Node := Specification (Unit_Node);
end if; end if;
if Nkind (Unit_Node) = N_Package_Declaration if Nkind_In (Unit_Node, N_Package_Declaration,
or else Nkind (Unit_Node) = N_Subprogram_Declaration N_Subprogram_Declaration,
or else Nkind (Unit_Node) = N_Subprogram_Body N_Subprogram_Body,
or else Nkind (Unit_Node) = N_Subprogram_Renaming_Declaration N_Subprogram_Renaming_Declaration)
then then
Unit_Node := Specification (Unit_Node); Unit_Node := Specification (Unit_Node);
...@@ -540,26 +538,27 @@ package body Ch10 is ...@@ -540,26 +538,27 @@ package body Ch10 is
end if; end if;
end if; end if;
if Nkind (Unit_Node) = N_Task_Body if Nkind_In (Unit_Node, N_Task_Body,
or else Nkind (Unit_Node) = N_Protected_Body N_Protected_Body,
or else Nkind (Unit_Node) = N_Task_Type_Declaration N_Task_Type_Declaration,
or else Nkind (Unit_Node) = N_Protected_Type_Declaration N_Protected_Type_Declaration,
or else Nkind (Unit_Node) = N_Single_Task_Declaration N_Single_Task_Declaration,
or else Nkind (Unit_Node) = N_Single_Protected_Declaration N_Single_Protected_Declaration)
then then
Name_Node := Defining_Identifier (Unit_Node); Name_Node := Defining_Identifier (Unit_Node);
elsif Nkind (Unit_Node) = N_Function_Instantiation elsif Nkind_In (Unit_Node, N_Function_Instantiation,
or else Nkind (Unit_Node) = N_Function_Specification N_Function_Specification,
or else Nkind (Unit_Node) = N_Generic_Function_Renaming_Declaration N_Generic_Function_Renaming_Declaration,
or else Nkind (Unit_Node) = N_Generic_Package_Renaming_Declaration N_Generic_Package_Renaming_Declaration,
or else Nkind (Unit_Node) = N_Generic_Procedure_Renaming_Declaration N_Generic_Procedure_Renaming_Declaration)
or else Nkind (Unit_Node) = N_Package_Body or else
or else Nkind (Unit_Node) = N_Package_Instantiation Nkind_In (Unit_Node, N_Package_Body,
or else Nkind (Unit_Node) = N_Package_Renaming_Declaration N_Package_Instantiation,
or else Nkind (Unit_Node) = N_Package_Specification N_Package_Renaming_Declaration,
or else Nkind (Unit_Node) = N_Procedure_Instantiation N_Package_Specification,
or else Nkind (Unit_Node) = N_Procedure_Specification N_Procedure_Instantiation,
N_Procedure_Specification)
then then
Name_Node := Defining_Unit_Name (Unit_Node); Name_Node := Defining_Unit_Name (Unit_Node);
......
...@@ -1063,6 +1063,7 @@ package body Ch9 is ...@@ -1063,6 +1063,7 @@ package body Ch9 is
Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Ecol := Start_Column;
Scope.Table (Scope.Last).Lreq := False; Scope.Table (Scope.Last).Lreq := False;
Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Etyp := E_Name;
Scope.Table (Scope.Last).Sloc := Token_Ptr;
Name_Node := P_Defining_Identifier; Name_Node := P_Defining_Identifier;
Set_Defining_Identifier (Entry_Node, Name_Node); Set_Defining_Identifier (Entry_Node, Name_Node);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment