diff options
author | Tristan Gingold | 2016-01-27 04:44:21 +0100 |
---|---|---|
committer | Tristan Gingold | 2016-01-27 18:49:24 +0100 |
commit | 2eb85a0a21effc2e7ad957216178055cb98a2300 (patch) | |
tree | 908614ba5cbff935283b3bf5c9c1599dd9af748c /src/vhdl/simulate/annotations.adb | |
parent | f5b237b7a254f55b9b4f9e4cc6b47898237f91b5 (diff) | |
download | ghdl-2eb85a0a21effc2e7ad957216178055cb98a2300.tar.gz ghdl-2eb85a0a21effc2e7ad957216178055cb98a2300.tar.bz2 ghdl-2eb85a0a21effc2e7ad957216178055cb98a2300.zip |
simul: use Tables instead of GNAT.Table
Diffstat (limited to 'src/vhdl/simulate/annotations.adb')
-rw-r--r-- | src/vhdl/simulate/annotations.adb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/vhdl/simulate/annotations.adb b/src/vhdl/simulate/annotations.adb index a19950d..47aa0e8 100644 --- a/src/vhdl/simulate/annotations.adb +++ b/src/vhdl/simulate/annotations.adb @@ -16,7 +16,7 @@ -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. -with GNAT.Table; +with Tables; with Ada.Text_IO; with Std_Package; with Errorout; use Errorout; @@ -1095,12 +1095,11 @@ package body Annotations is Current_Scope := (Kind => Scope_Kind_None); end Annotate_Configuration_Declaration; - package Info_Node is new GNAT.Table + package Info_Node is new Tables (Table_Component_Type => Sim_Info_Acc, Table_Index_Type => Iir, Table_Low_Bound => 2, - Table_Initial => 1024, - Table_Increment => 100); + Table_Initial => 1024); procedure Annotate_Expand_Table is |