aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth
diff options
context:
space:
mode:
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;