aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-objtypes.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-04-20 07:49:03 +0200
committerTristan Gingold <tgingold@free.fr>2020-04-20 12:19:48 +0200
commitcb72a1834f160d95d026b7e466886fd95fd82146 (patch)
tree87cd0fff5a8ce03b05b8e6a0a0129b60de90fe61 /src/synth/synth-objtypes.ads
parentb6d42a577f4ee5f2084a165b0cdf66cadcc878a1 (diff)
downloadghdl-cb72a1834f160d95d026b7e466886fd95fd82146.tar.gz
ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.tar.bz2
ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.zip
types: introduce Direction_Type, which replaces Iir_Direction.
Global renaming.
Diffstat (limited to 'src/synth/synth-objtypes.ads')
-rw-r--r--src/synth/synth-objtypes.ads6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/synth/synth-objtypes.ads b/src/synth/synth-objtypes.ads
index a332536d1..c79a473c4 100644
--- a/src/synth/synth-objtypes.ads
+++ b/src/synth/synth-objtypes.ads
@@ -30,7 +30,7 @@ with Vhdl.Nodes; use Vhdl.Nodes;
package Synth.Objtypes is
type Discrete_Range_Type is record
-- An integer range.
- Dir : Iir_Direction;
+ Dir : Direction_Type;
-- Netlist representation: signed or unsigned, width of vector.
Is_Signed : Boolean;
@@ -43,13 +43,13 @@ package Synth.Objtypes is
function Discrete_Range_Width (Rng : Discrete_Range_Type) return Width;
type Float_Range_Type is record
- Dir : Iir_Direction;
+ Dir : Direction_Type;
Left : Fp64;
Right : Fp64;
end record;
type Bound_Type is record
- Dir : Iir_Direction;
+ Dir : Direction_Type;
Left : Int32;
Right : Int32;
Len : Width;