aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/sem_scopes.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2018-12-20 07:57:11 +0100
committerTristan Gingold <tgingold@free.fr>2018-12-21 06:08:17 +0100
commit3b5fe48263e0a8cc065e7a06cdcd892694062b28 (patch)
tree6f4f8a0e703dbf269ac101675153d59677c8f1c3 /src/vhdl/sem_scopes.adb
parent7346d1a7fcf241c9eb797bd896f44d08a341f6a1 (diff)
downloadghdl-3b5fe48263e0a8cc065e7a06cdcd892694062b28.tar.gz
ghdl-3b5fe48263e0a8cc065e7a06cdcd892694062b28.tar.bz2
ghdl-3b5fe48263e0a8cc065e7a06cdcd892694062b28.zip
Improve error handling on use clauses.
Diffstat (limited to 'src/vhdl/sem_scopes.adb')
-rw-r--r--src/vhdl/sem_scopes.adb24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/vhdl/sem_scopes.adb b/src/vhdl/sem_scopes.adb
index 16be2a29d..f99273ef9 100644
--- a/src/vhdl/sem_scopes.adb
+++ b/src/vhdl/sem_scopes.adb
@@ -1445,10 +1445,6 @@ package body Sem_Scopes is
-- name.
procedure Use_Selected_Name (Name : Iir) is
begin
- if Is_Any_Error (Name) then
- return;
- end if;
-
case Get_Kind (Name) is
when Iir_Kind_Overload_List =>
Add_Declarations_List (Get_Overload_List (Name), True);
@@ -1475,10 +1471,6 @@ package body Sem_Scopes is
-- library denotes by te prefix of the selected name.
procedure Use_All_Names (Name: Iir) is
begin
- if Is_Any_Error (Name) then
- return;
- end if;
-
case Get_Kind (Name) is
when Iir_Kind_Library_Declaration =>
Use_Library_All (Name);
@@ -1509,10 +1501,20 @@ package body Sem_Scopes is
Cl := Clause;
loop
Name := Get_Selected_Name (Cl);
- if Get_Kind (Name) = Iir_Kind_Selected_By_All_Name then
- Use_All_Names (Get_Named_Entity (Get_Prefix (Name)));
+ if Name = Null_Iir then
+ pragma Assert (Flags.Flag_Force_Analysis);
+ null;
else
- Use_Selected_Name (Get_Named_Entity (Name));
+ if Get_Kind (Name) = Iir_Kind_Selected_By_All_Name then
+ Name := Get_Prefix (Name);
+ if not Is_Error (Name) then
+ Use_All_Names (Get_Named_Entity (Name));
+ end if;
+ else
+ if not Is_Error (Name) then
+ Use_Selected_Name (Get_Named_Entity (Name));
+ end if;
+ end if;
end if;
Cl := Get_Use_Clause_Chain (Cl);
exit when Cl = Null_Iir;