diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-03-20 07:37:03 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-03-20 18:53:04 +0100 |
commit | 0c79f9cfade3b5a8fc8bb24cad944e70109b86e5 (patch) | |
tree | 8c0fc1ae4bcb20a2ec2d665b9d6bd4d246419e36 /src/synth | |
parent | 0ed24515f1d273ebe494e51dd7fdfb70ca13cc73 (diff) | |
download | ghdl-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.adb | 5 |
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; |