diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-10 06:58:57 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-10 18:14:47 +0200 |
commit | db7d0b337e85c3b327efa799418ef92de3a369ce (patch) | |
tree | b1aec6a72ccf989da9617cbc0f581b12eb80b8c8 /src/vhdl/vhdl-disp_vhdl.ads | |
parent | 2c5ce4b3aab14d67e97623e8dfe31cf27a043e7c (diff) | |
download | ghdl-db7d0b337e85c3b327efa799418ef92de3a369ce.tar.gz ghdl-db7d0b337e85c3b327efa799418ef92de3a369ce.tar.bz2 ghdl-db7d0b337e85c3b327efa799418ef92de3a369ce.zip |
vhdl: replace Iir_Int64 by Int64, and Iir_Fp64 by Fp64.
Diffstat (limited to 'src/vhdl/vhdl-disp_vhdl.ads')
-rw-r--r-- | src/vhdl/vhdl-disp_vhdl.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-disp_vhdl.ads b/src/vhdl/vhdl-disp_vhdl.ads index b29a1e736..e69ab29f2 100644 --- a/src/vhdl/vhdl-disp_vhdl.ads +++ b/src/vhdl/vhdl-disp_vhdl.ads @@ -30,11 +30,11 @@ package Vhdl.Disp_Vhdl is -- Display an expression. -- Disp an iir_int64, without the leading blank. - procedure Disp_Int64 (Val: Iir_Int64); + procedure Disp_Int64 (Val: Int64); -- Disp an iir_int32, without the leading blank. procedure Disp_Int32 (Val: Iir_Int32); -- Disp an iir_Fp64, without the leading blank. - procedure Disp_Fp64 (Val: Iir_Fp64); + procedure Disp_Fp64 (Val: Fp64); end Vhdl.Disp_Vhdl; |