diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-11-17 21:22:02 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-11-17 21:22:02 +0100 |
commit | e890899a52b1b879694a41759e7644613d7bd1a6 (patch) | |
tree | 17c2639eeb58f90eec82c4d21b2c7364543d50e9 /src/synth/include | |
parent | 4ac40b32c52686bb2c84b640d25d71919cafdf0e (diff) | |
download | ghdl-e890899a52b1b879694a41759e7644613d7bd1a6.tar.gz ghdl-e890899a52b1b879694a41759e7644613d7bd1a6.tar.bz2 ghdl-e890899a52b1b879694a41759e7644613d7bd1a6.zip |
synth: renaming to instance_attributes.
Diffstat (limited to 'src/synth/include')
-rw-r--r-- | src/synth/include/synth.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/synth/include/synth.h b/src/synth/include/synth.h index fa6b78e2c..21144e32f 100644 --- a/src/synth/include/synth.h +++ b/src/synth/include/synth.h @@ -133,9 +133,9 @@ namespace GhdlSynth { GHDLSYNTH_ADA_WRAPPER_WW(get_next_sink, Input, Input); struct Attribute { unsigned int id; }; - GHDLSYNTH_ADA_WRAPPER_WW(get_first_attribute, Attribute, Instance); - GHDLSYNTH_ADA_WRAPPER_WWD(get_first_input_port_attribute, Attribute, Module, Port_Idx); - GHDLSYNTH_ADA_WRAPPER_WWD(get_first_output_port_attribute, Attribute, Module, Port_Idx); + GHDLSYNTH_ADA_WRAPPER_WW(get_instance_first_attribute, Attribute, Instance); + GHDLSYNTH_ADA_WRAPPER_WWD(get_input_port_first_attribute, Attribute, Module, Port_Idx); + GHDLSYNTH_ADA_WRAPPER_WWD(get_output_port_first_attribute, Attribute, Module, Port_Idx); GHDLSYNTH_ADA_WRAPPER_WW(get_attribute_name, Name_Id, Attribute); GHDLSYNTH_ADA_WRAPPER_DW(get_attribute_type, Param_Type, Attribute); GHDLSYNTH_ADA_WRAPPER_WW(get_attribute_pval, Pval, Attribute); |