aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/elab-vhdl_annotations.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/elab-vhdl_annotations.ads')
-rw-r--r--src/synth/elab-vhdl_annotations.ads36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/synth/elab-vhdl_annotations.ads b/src/synth/elab-vhdl_annotations.ads
index fa06ff6d3..b8888adf0 100644
--- a/src/synth/elab-vhdl_annotations.ads
+++ b/src/synth/elab-vhdl_annotations.ads
@@ -14,7 +14,6 @@
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <gnu.org/licenses>.
-with Types; use Types;
with Vhdl.Nodes; use Vhdl.Nodes;
package Elab.Vhdl_Annotations is
@@ -34,9 +33,6 @@ package Elab.Vhdl_Annotations is
type Sim_Info_Kind is
(
Kind_Block, Kind_Process, Kind_Frame, Kind_Protected, Kind_Package,
- Kind_Bit_Type, Kind_Log_Type,
- Kind_E8_Type, Kind_E32_Type, Kind_I64_Type, Kind_F64_Type,
- Kind_File_Type,
Kind_Type,
Kind_Object, Kind_Signal,
Kind_File,
@@ -45,27 +41,6 @@ package Elab.Vhdl_Annotations is
Kind_Extra
);
- subtype Kind_Scalar_Types is Sim_Info_Kind range
- Kind_Bit_Type ..
- --Kind_Log_Type
- --Kind_E8_Type
- --Kind_E32_Type
- --Kind_I64_Type
- Kind_F64_Type;
-
- subtype Kind_Discrete_Types is Sim_Info_Kind range
- Kind_Bit_Type ..
- --Kind_Log_Type
- --Kind_E8_Type
- --Kind_E32_Type
- Kind_I64_Type;
-
- subtype Kind_Enum_Types is Sim_Info_Kind range
- Kind_Bit_Type ..
- --Kind_Log_Type
- --Kind_E8_Type
- Kind_E32_Type;
-
type Instance_Slot_Type is new Integer;
Invalid_Instance_Slot : constant Instance_Slot_Type := -1;
@@ -115,17 +90,6 @@ package Elab.Vhdl_Annotations is
-- Variable index in the block.
Slot: Object_Slot_Type;
- when Kind_Bit_Type
- | Kind_Log_Type
- | Kind_E8_Type
- | Kind_E32_Type
- | Kind_I64_Type
- | Kind_F64_Type =>
- Width : Uns32;
-
- when Kind_File_Type =>
- File_Signature : String_Acc;
-
when Kind_Extra =>
Extra_Slot : Extra_Slot_Type;
end case;