diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-03-29 06:11:24 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-03-29 06:11:24 +0200 |
commit | 6b71c159a9af984693491e19dbf6369cf7951362 (patch) | |
tree | b39e6f3a51a021d1853efaf49f92965e78891f32 /src | |
parent | 2b2b76a1afd1916907c216be5151574833099c0d (diff) | |
download | ghdl-6b71c159a9af984693491e19dbf6369cf7951362.tar.gz ghdl-6b71c159a9af984693491e19dbf6369cf7951362.tar.bz2 ghdl-6b71c159a9af984693491e19dbf6369cf7951362.zip |
simulation: remove unused kind_range.
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/simulate/annotations.adb | 7 | ||||
-rw-r--r-- | src/vhdl/simulate/annotations.ads | 3 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/vhdl/simulate/annotations.adb b/src/vhdl/simulate/annotations.adb index ef85321ba..a7c2869a5 100644 --- a/src/vhdl/simulate/annotations.adb +++ b/src/vhdl/simulate/annotations.adb @@ -107,7 +107,6 @@ package body Annotations is when Kind_Block | Kind_Process | Kind_Frame - | Kind_Range | Kind_Scalar_Type | Kind_File_Type => raise Internal_Error; @@ -1272,10 +1271,6 @@ package body Annotations is when Kind_Scalar_Type | Kind_File_Type => null; - when Kind_Range => - Put ("${"); - Put (Object_Slot_Type'Image (Info.Slot)); - Put ("}"); end case; end Disp_Vhdl_Info; @@ -1307,8 +1302,6 @@ package body Annotations is | Kind_PSL => Put_Line ("slot:" & Object_Slot_Type'Image (Info.Slot) & ", scope:" & Image (Info.Obj_Scope)); - when Kind_Range => - Put_Line ("range slot:" & Object_Slot_Type'Image (Info.Slot)); when Kind_Scalar_Type => Put_Line ("scalar type: " & Iir_Value_Kind'Image (Info.Scalar_Mode)); diff --git a/src/vhdl/simulate/annotations.ads b/src/vhdl/simulate/annotations.ads index 1f95d15cf..8960258a2 100644 --- a/src/vhdl/simulate/annotations.ads +++ b/src/vhdl/simulate/annotations.ads @@ -43,7 +43,7 @@ package Annotations is type Sim_Info_Kind is (Kind_Block, Kind_Process, Kind_Frame, Kind_Scalar_Type, Kind_File_Type, - Kind_Object, Kind_Signal, Kind_Range, + Kind_Object, Kind_Signal, Kind_File, Kind_Terminal, Kind_Quantity, Kind_Environment, @@ -112,7 +112,6 @@ package Annotations is when Kind_Object | Kind_Signal - | Kind_Range | Kind_File | Kind_Terminal | Kind_Quantity |