aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-06-18 06:42:54 +0200
committerUnai Martinez-Corral <38422348+umarcor@users.noreply.github.com>2021-06-18 17:34:47 +0100
commitd8917e7cb2579b4e26c41610692fcc9a169350c0 (patch)
tree900aa2b66e615ba1aa22701936cf20ff77263721 /src/vhdl
parent211ff3fe4426eeedad4a77b4a0ea83578637a6e7 (diff)
downloadghdl-d8917e7cb2579b4e26c41610692fcc9a169350c0.tar.gz
ghdl-d8917e7cb2579b4e26c41610692fcc9a169350c0.tar.bz2
ghdl-d8917e7cb2579b4e26c41610692fcc9a169350c0.zip
vhdl-nodes.ads: use pnodes layout for Number_Base_Type
So that it can be extracted.
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/vhdl-nodes.ads9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-nodes.ads b/src/vhdl/vhdl-nodes.ads
index da01e6bc4..e34192932 100644
--- a/src/vhdl/vhdl-nodes.ads
+++ b/src/vhdl/vhdl-nodes.ads
@@ -7102,7 +7102,14 @@ package Vhdl.Nodes is
-- Purity depth of an impure subprogram.
Iir_Depth_Impure : constant Iir_Int32 := -1;
- type Number_Base_Type is (Base_None, Base_2, Base_8, Base_10, Base_16);
+ type Number_Base_Type is
+ (
+ Base_None,
+ Base_2,
+ Base_8,
+ Base_10,
+ Base_16
+ );
-- design file
subtype Iir_Design_File is Iir;