aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-heap.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-04-02 07:35:01 +0200
committerTristan Gingold <tgingold@free.fr>2020-04-02 07:35:01 +0200
commitfbbdd1e3aeac3adcfa073f3953027972f36e2c82 (patch)
tree6770feccb72bf9c6f4f0900a8ddfd0fada205f79 /src/synth/synth-heap.ads
parentc23324b6b718eda1b34302ea497e0f65fca1a9e1 (diff)
downloadghdl-fbbdd1e3aeac3adcfa073f3953027972f36e2c82.tar.gz
ghdl-fbbdd1e3aeac3adcfa073f3953027972f36e2c82.tar.bz2
ghdl-fbbdd1e3aeac3adcfa073f3953027972f36e2c82.zip
synth: rework - use valtyp for expressions.
Diffstat (limited to 'src/synth/synth-heap.ads')
-rw-r--r--src/synth/synth-heap.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/synth-heap.ads b/src/synth/synth-heap.ads
index 5568a3772..204ff3846 100644
--- a/src/synth/synth-heap.ads
+++ b/src/synth/synth-heap.ads
@@ -23,9 +23,9 @@ with Synth.Values; use Synth.Values;
package Synth.Heap is
-- Allocate a value.
function Allocate_By_Type (T : Type_Acc) return Heap_Index;
- function Allocate_By_Value (V : Value_Acc) return Heap_Index;
+ function Allocate_By_Value (V : Valtyp) return Heap_Index;
- function Synth_Dereference (Idx : Heap_Index) return Value_Acc;
+ function Synth_Dereference (Idx : Heap_Index) return Valtyp;
procedure Synth_Deallocate (Idx : Heap_Index);
end Synth.Heap;