aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/iirs_utils.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/iirs_utils.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/iirs_utils.adb')
-rw-r--r--src/vhdl/iirs_utils.adb16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/vhdl/iirs_utils.adb b/src/vhdl/iirs_utils.adb
index 32e52f77f..bc4b7b7e7 100644
--- a/src/vhdl/iirs_utils.adb
+++ b/src/vhdl/iirs_utils.adb
@@ -51,11 +51,6 @@ package body Iirs_Utils is
return Get_Kind (N) = Iir_Kind_Error;
end Is_Error;
- function Is_Any_Error (N : Iir) return Boolean is
- begin
- return N = Null_Iir or else Get_Kind (N) = Iir_Kind_Error;
- end Is_Any_Error;
-
function Is_Overflow_Literal (N : Iir) return Boolean is
begin
return Get_Kind (N) = Iir_Kind_Overflow_Literal;
@@ -1601,6 +1596,17 @@ package body Iirs_Utils is
return Res;
end Create_Error_Type;
+ function Create_Error_Name (Orig : Iir) return Iir
+ is
+ Res : Iir;
+ begin
+ Res := Create_Iir (Iir_Kind_Error);
+ Set_Expr_Staticness (Res, None);
+ Set_Error_Origin (Res, Orig);
+ Location_Copy (Res, Orig);
+ return Res;
+ end Create_Error_Name;
+
-- Extract the entity from ASPECT.
-- Note: if ASPECT is a component declaration, returns ASPECT.
function Get_Entity_From_Entity_Aspect (Aspect : Iir) return Iir