aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-objtypes.ads
diff options
context:
space:
mode:
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;