aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-08 06:33:00 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-08 06:33:00 +0200
commitd87e8284e3dc3adced8b8aa2258e3a87097396b1 (patch)
treedae5a0494d041e715cada1553d717effb0248a18 /src/vhdl
parentc5c504aac52c749f676a498b20a07e7005cd397c (diff)
downloadghdl-d87e8284e3dc3adced8b8aa2258e3a87097396b1.tar.gz
ghdl-d87e8284e3dc3adced8b8aa2258e3a87097396b1.tar.bz2
ghdl-d87e8284e3dc3adced8b8aa2258e3a87097396b1.zip
vhdl: renames iirs_walk to vhdl-nodes_walk
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/simulate/simul-debugger.adb2
-rw-r--r--src/vhdl/translate/trans_analyzes.adb2
-rw-r--r--src/vhdl/vhdl-configuration.adb4
-rw-r--r--src/vhdl/vhdl-nodes_walk.adb (renamed from src/vhdl/iirs_walk.adb)4
-rw-r--r--src/vhdl/vhdl-nodes_walk.ads (renamed from src/vhdl/iirs_walk.ads)4
5 files changed, 8 insertions, 8 deletions
diff --git a/src/vhdl/simulate/simul-debugger.adb b/src/vhdl/simulate/simul-debugger.adb
index f094073e2..a50542f38 100644
--- a/src/vhdl/simulate/simul-debugger.adb
+++ b/src/vhdl/simulate/simul-debugger.adb
@@ -38,7 +38,7 @@ with Simul.Execution; use Simul.Execution;
with Vhdl.Utils; use Vhdl.Utils;
with Errorout; use Errorout;
with Vhdl.Disp_Vhdl;
-with Iirs_Walk; use Iirs_Walk;
+with Vhdl.Nodes_Walk; use Vhdl.Nodes_Walk;
with Areapools; use Areapools;
with Grt.Types; use Grt.Types;
with Grt.Disp;
diff --git a/src/vhdl/translate/trans_analyzes.adb b/src/vhdl/translate/trans_analyzes.adb
index 2d4aef0d6..b3940e398 100644
--- a/src/vhdl/translate/trans_analyzes.adb
+++ b/src/vhdl/translate/trans_analyzes.adb
@@ -17,7 +17,7 @@
-- 02111-1307, USA.
with Vhdl.Utils; use Vhdl.Utils;
-with Iirs_Walk; use Iirs_Walk;
+with Vhdl.Nodes_Walk; use Vhdl.Nodes_Walk;
with Vhdl.Disp_Vhdl;
with Ada.Text_IO;
with Errorout;
diff --git a/src/vhdl/vhdl-configuration.adb b/src/vhdl/vhdl-configuration.adb
index 6b371d601..e23d8e9cf 100644
--- a/src/vhdl/vhdl-configuration.adb
+++ b/src/vhdl/vhdl-configuration.adb
@@ -22,7 +22,7 @@ with Vhdl.Std_Package;
with Name_Table; use Name_Table;
with Flags;
with Vhdl.Utils; use Vhdl.Utils;
-with Iirs_Walk;
+with Vhdl.Nodes_Walk;
with Vhdl.Sem_Scopes;
with Vhdl.Sem_Lib; use Vhdl.Sem_Lib;
with Vhdl.Canon;
@@ -787,7 +787,7 @@ package body Vhdl.Configuration is
end Top;
package body Top is
- use Iirs_Walk;
+ use Nodes_Walk;
function Add_Entity_Cb (Design : Iir) return Walk_Status
is
diff --git a/src/vhdl/iirs_walk.adb b/src/vhdl/vhdl-nodes_walk.adb
index c367af9e6..2ada0a225 100644
--- a/src/vhdl/iirs_walk.adb
+++ b/src/vhdl/vhdl-nodes_walk.adb
@@ -19,7 +19,7 @@
with Vhdl.Utils; use Vhdl.Utils;
with Errorout; use Errorout;
-package body Iirs_Walk is
+package body Vhdl.Nodes_Walk is
function Walk_Chain (Chain : Iir; Cb : Walk_Cb) return Walk_Status
is
El : Iir;
@@ -174,4 +174,4 @@ package body Iirs_Walk is
return Walk_Continue;
end Walk_Concurrent_Statements_Chain;
-end Iirs_Walk;
+end Vhdl.Nodes_Walk;
diff --git a/src/vhdl/iirs_walk.ads b/src/vhdl/vhdl-nodes_walk.ads
index ca0a9e88f..d93d47d46 100644
--- a/src/vhdl/iirs_walk.ads
+++ b/src/vhdl/vhdl-nodes_walk.ads
@@ -18,7 +18,7 @@
with Vhdl.Nodes; use Vhdl.Nodes;
-package Iirs_Walk is
+package Vhdl.Nodes_Walk is
type Walk_Status is
(
-- Continue to walk.
@@ -50,4 +50,4 @@ package Iirs_Walk is
function Walk_Concurrent_Statements_Chain (Chain : Iir; Cb : Walk_Cb)
return Walk_Status;
-end Iirs_Walk;
+end Vhdl.Nodes_Walk;