diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-06 21:58:47 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-06 21:59:40 +0200 |
commit | 3a8482652759411ed2dfc837c3cc6f98ae032158 (patch) | |
tree | af8751eb880333cae65235e7eac62292ae7aa272 /src/vhdl/translate | |
parent | 8bdc2c174fbd6199414301e245b1045c5f40489c (diff) | |
download | ghdl-3a8482652759411ed2dfc837c3cc6f98ae032158.tar.gz ghdl-3a8482652759411ed2dfc837c3cc6f98ae032158.tar.bz2 ghdl-3a8482652759411ed2dfc837c3cc6f98ae032158.zip |
vhdl: renames iir_chains to vhdl.nodes_utils. Remove iir_chain_handling.
Diffstat (limited to 'src/vhdl/translate')
-rw-r--r-- | src/vhdl/translate/trans-chap7.adb | 2 | ||||
-rw-r--r-- | src/vhdl/translate/trans-chap8.adb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdl/translate/trans-chap7.adb b/src/vhdl/translate/trans-chap7.adb index 85b74416e..347281d3a 100644 --- a/src/vhdl/translate/trans-chap7.adb +++ b/src/vhdl/translate/trans-chap7.adb @@ -20,7 +20,7 @@ with Ada.Text_IO; with Name_Table; with Str_Table; with Vhdl.Utils; use Vhdl.Utils; -with Iir_Chains; use Iir_Chains; +with Vhdl.Nodes_Utils; use Vhdl.Nodes_Utils; with Vhdl.Std_Package; use Vhdl.Std_Package; with Errorout; use Errorout; with Flags; use Flags; diff --git a/src/vhdl/translate/trans-chap8.adb b/src/vhdl/translate/trans-chap8.adb index 59bbca656..34adc93c6 100644 --- a/src/vhdl/translate/trans-chap8.adb +++ b/src/vhdl/translate/trans-chap8.adb @@ -19,7 +19,7 @@ with Ada.Text_IO; with Std_Names; with Errorout; use Errorout; -with Iir_Chains; +with Vhdl.Nodes_Utils; with Vhdl.Canon; with Vhdl.Evaluation; use Vhdl.Evaluation; with Vhdl.Std_Package; use Vhdl.Std_Package; @@ -2656,7 +2656,7 @@ package body Trans.Chap8 is type Mnode_Array is array (Natural range <>) of Mnode; type O_Enode_Array is array (Natural range <>) of O_Enode; Nbr_Assoc : constant Natural := - Iir_Chains.Get_Chain_Length (Assoc_Chain); + Vhdl.Nodes_Utils.Get_Chain_Length (Assoc_Chain); -- References to the formals (for copy-out), and variables for whole -- actual of individual associations. |