diff options
author | Unai Martinez-Corral <38422348+umarcor@users.noreply.github.com> | 2022-05-14 13:14:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-14 13:14:01 +0200 |
commit | 2250367424796cd0215eedeedaba8f120a027f4c (patch) | |
tree | 64abf2fe317a6563c7fd6a3f1a3a13a2647391a1 /src/synth | |
parent | fd1c6d1d7bd4a11f8a79bdd08ab8c0262334c89e (diff) | |
parent | 8c5689b93e68ac34cdf7dd089a3990ae22f0049c (diff) | |
download | ghdl-2250367424796cd0215eedeedaba8f120a027f4c.tar.gz ghdl-2250367424796cd0215eedeedaba8f120a027f4c.tar.bz2 ghdl-2250367424796cd0215eedeedaba8f120a027f4c.zip |
GCC 12 compatibility (#2057)
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/netlists-disp_dot.ads | 2 | ||||
-rw-r--r-- | src/synth/netlists-inference.ads | 1 | ||||
-rw-r--r-- | src/synth/synth-vhdl_stmts.adb | 2 |
3 files changed, 1 insertions, 4 deletions
diff --git a/src/synth/netlists-disp_dot.ads b/src/synth/netlists-disp_dot.ads index 416554c76..01f07d41e 100644 --- a/src/synth/netlists-disp_dot.ads +++ b/src/synth/netlists-disp_dot.ads @@ -16,8 +16,6 @@ -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <gnu.org/licenses>. -with Netlists; - package Netlists.Disp_Dot is procedure Disp_Dot_Top_Module (M : Module); end Netlists.Disp_Dot; diff --git a/src/synth/netlists-inference.ads b/src/synth/netlists-inference.ads index ae671a0ac..8a6aef2f3 100644 --- a/src/synth/netlists-inference.ads +++ b/src/synth/netlists-inference.ads @@ -16,7 +16,6 @@ -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <gnu.org/licenses>. -with Netlists; use Netlists; with Netlists.Builders; use Netlists.Builders; package Netlists.Inference is diff --git a/src/synth/synth-vhdl_stmts.adb b/src/synth/synth-vhdl_stmts.adb index 3e09c3318..6fa2e9227 100644 --- a/src/synth/synth-vhdl_stmts.adb +++ b/src/synth/synth-vhdl_stmts.adb @@ -1933,11 +1933,11 @@ package body Synth.Vhdl_Stmts is Assoc_Chain : Node) is Infos : Target_Info_Array (1 .. 0); - pragma Unreferenced (Infos); Init : Association_Iterator_Init; begin Init := Association_Iterator_Build (Inter_Chain, Assoc_Chain); Synth_Subprogram_Association (Subprg_Inst, Caller_Inst, Init, Infos); + pragma Unreferenced (Infos); end Synth_Subprogram_Association; -- Create wires for out and inout interface variables. |