diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-06-12 07:56:33 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-06-12 08:04:46 +0200 |
commit | e22a01a5b2b6cea1d8bc3b8cbd2e82be9ad3cc18 (patch) | |
tree | a6d630e216b658d4c5a552e3bfbe1d8e42208fb1 | |
parent | 6bdd3033de0d08bcc9672c78ff2536c08303627b (diff) | |
download | ghdl-e22a01a5b2b6cea1d8bc3b8cbd2e82be9ad3cc18.tar.gz ghdl-e22a01a5b2b6cea1d8bc3b8cbd2e82be9ad3cc18.tar.bz2 ghdl-e22a01a5b2b6cea1d8bc3b8cbd2e82be9ad3cc18.zip |
vhdl-nodes: add Node_List and Node_Flist aliases.
-rw-r--r-- | src/vhdl/vhdl-nodes.ads | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-nodes.ads b/src/vhdl/vhdl-nodes.ads index 940b616c4..6518fd7ef 100644 --- a/src/vhdl/vhdl-nodes.ads +++ b/src/vhdl/vhdl-nodes.ads @@ -5502,6 +5502,7 @@ package Vhdl.Nodes is pragma Inline (Get_Last_Node); subtype Iir_List is Lists.List_Type; + subtype Node_List is Lists.List_Type; Null_Iir_List : constant Iir_List := Lists.Null_List; Iir_List_All : constant Iir_List := Lists.List_All; @@ -5540,6 +5541,7 @@ package Vhdl.Nodes is function "=" (L, R : Iir_List) return Boolean renames Lists."="; subtype Iir_Flist is Flists.Flist_Type; + subtype Node_Flist is Flists.Flist_Type; Null_Iir_Flist : constant Iir_Flist := Flists.Null_Flist; Iir_Flist_Others : constant Iir_Flist := Flists.Flist_Others; Iir_Flist_All : constant Iir_Flist := Flists.Flist_All; |