aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-scanner.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-10 06:58:57 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-10 18:14:47 +0200
commitdb7d0b337e85c3b327efa799418ef92de3a369ce (patch)
treeb1aec6a72ccf989da9617cbc0f581b12eb80b8c8 /src/vhdl/vhdl-scanner.ads
parent2c5ce4b3aab14d67e97623e8dfe31cf27a043e7c (diff)
downloadghdl-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-scanner.ads')
-rw-r--r--src/vhdl/vhdl-scanner.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-scanner.ads b/src/vhdl/vhdl-scanner.ads
index 797e2f6e1..64f54bb3b 100644
--- a/src/vhdl/vhdl-scanner.ads
+++ b/src/vhdl/vhdl-scanner.ads
@@ -59,11 +59,11 @@ package Vhdl.Scanner is
-- When CURRENT_TOKEN is tok_integer, returns the value.
-- When CURRENT_TOKEN is tok_bit_string, returns the log of the base.
- function Current_Iir_Int64 return Iir_Int64;
+ function Current_Iir_Int64 return Int64;
pragma Inline (Current_Iir_Int64);
-- When CURRENT_TOKEN is tok_real, it returns the value.
- function Current_Iir_Fp64 return Iir_Fp64;
+ function Current_Iir_Fp64 return Fp64;
pragma Inline (Current_Iir_Fp64);
-- Advances the lexical analyser. Put a new token into current_token.