aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate/simulation-ams.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-01-27 04:44:21 +0100
committerTristan Gingold <tgingold@free.fr>2016-01-27 18:49:24 +0100
commit2eb85a0a21effc2e7ad957216178055cb98a2300 (patch)
tree908614ba5cbff935283b3bf5c9c1599dd9af748c /src/vhdl/simulate/simulation-ams.adb
parentf5b237b7a254f55b9b4f9e4cc6b47898237f91b5 (diff)
downloadghdl-2eb85a0a21effc2e7ad957216178055cb98a2300.tar.gz
ghdl-2eb85a0a21effc2e7ad957216178055cb98a2300.tar.bz2
ghdl-2eb85a0a21effc2e7ad957216178055cb98a2300.zip
simul: use Tables instead of GNAT.Table
Diffstat (limited to 'src/vhdl/simulate/simulation-ams.adb')
-rw-r--r--src/vhdl/simulate/simulation-ams.adb6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/vhdl/simulate/simulation-ams.adb b/src/vhdl/simulate/simulation-ams.adb
index 31dd43e0e..89e8b8ed2 100644
--- a/src/vhdl/simulate/simulation-ams.adb
+++ b/src/vhdl/simulate/simulation-ams.adb
@@ -99,12 +99,11 @@ package body Simulation.AMS is
procedure Compute_Dependencies (Idx : Characteristic_Expressions_Index)
is
- package Quantity_Table is new GNAT.Table
+ package Quantity_Table is new Tables
(Table_Component_Type => Quantity_Index_Type,
Table_Index_Type => Natural,
Table_Low_Bound => 1,
- Table_Initial => 16,
- Table_Increment => 100);
+ Table_Initial => 16);
El : Characteristic_Expr renames Characteristic_Expressions.Table (Idx);
Res : Quantity_Dependency_Acc := null;
@@ -198,4 +197,3 @@ package body Simulation.AMS is
end loop;
end Create_Tables;
end Simulation.AMS;
-