aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-context.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-09-20 04:50:31 +0200
committerTristan Gingold <tgingold@free.fr>2019-09-20 04:50:31 +0200
commit6448431a20876b11744db3e663254ae42c752b74 (patch)
treeffdf59ff9c31b522b47fd5d169b6d518a628abce /src/synth/synth-context.adb
parent92e75480e2e6aa32318b654aeb59315fecf27ea9 (diff)
downloadghdl-6448431a20876b11744db3e663254ae42c752b74.tar.gz
ghdl-6448431a20876b11744db3e663254ae42c752b74.tar.bz2
ghdl-6448431a20876b11744db3e663254ae42c752b74.zip
synth: rename get/set_module for instances.
Diffstat (limited to 'src/synth/synth-context.adb')
-rw-r--r--src/synth/synth-context.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/synth/synth-context.adb b/src/synth/synth-context.adb
index 99dd2cce5..3a57912f1 100644
--- a/src/synth/synth-context.adb
+++ b/src/synth/synth-context.adb
@@ -93,15 +93,15 @@ package body Synth.Context is
Deallocate (Synth_Inst);
end Free_Instance;
- procedure Set_Module (Inst : Synth_Instance_Acc; M : Module) is
+ procedure Set_Instance_Module (Inst : Synth_Instance_Acc; M : Module) is
begin
Inst.M := M;
- end Set_Module;
+ end Set_Instance_Module;
- function Get_Module (Inst : Synth_Instance_Acc) return Module is
+ function Get_Instance_Module (Inst : Synth_Instance_Acc) return Module is
begin
return Inst.M;
- end Get_Module;
+ end Get_Instance_Module;
function Get_Sname (Inst : Synth_Instance_Acc) return Sname is
begin