aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-03-20 07:37:03 +0100
committerTristan Gingold <tgingold@free.fr>2019-03-20 18:53:04 +0100
commit0c79f9cfade3b5a8fc8bb24cad944e70109b86e5 (patch)
tree8c0fc1ae4bcb20a2ec2d665b9d6bd4d246419e36 /src/synth
parent0ed24515f1d273ebe494e51dd7fdfb70ca13cc73 (diff)
downloadghdl-0c79f9cfade3b5a8fc8bb24cad944e70109b86e5.tar.gz
ghdl-0c79f9cfade3b5a8fc8bb24cad944e70109b86e5.tar.bz2
ghdl-0c79f9cfade3b5a8fc8bb24cad944e70109b86e5.zip
move algos to grt.
Diffstat (limited to 'src/synth')
-rw-r--r--src/synth/synth-stmts.adb5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/synth/synth-stmts.adb b/src/synth/synth-stmts.adb
index 3d8ee03f6..df49a624c 100644
--- a/src/synth/synth-stmts.adb
+++ b/src/synth/synth-stmts.adb
@@ -21,7 +21,7 @@
with Ada.Unchecked_Deallocation;
with Types; use Types;
-with Algos;
+with Grt.Algos;
with Areapools;
with Errorout; use Errorout;
@@ -278,7 +278,8 @@ package body Synth.Stmts is
Arr (To) := T;
end Swap;
- procedure Wid_Heap_Sort is new Algos.Heap_Sort (Lt => Lt, Swap => Swap);
+ procedure Wid_Heap_Sort is
+ new Grt.Algos.Heap_Sort (Lt => Lt, Swap => Swap);
begin
Wid_Heap_Sort (Arr'Length);
end Sort_Wire_Id_Array;