diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/netlists-memories.adb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/synth/netlists-memories.adb b/src/synth/netlists-memories.adb index d7ec4d8d3..f361bfea9 100644 --- a/src/synth/netlists-memories.adb +++ b/src/synth/netlists-memories.adb @@ -713,8 +713,11 @@ package body Netlists.Memories is | Id_Const_Bit => return Inst; when others => - Info_Msg_Synth - (+Last, "gate %i cannot be part of a memory", (1 => +Last)); + if False then + Info_Msg_Synth + (+Last, "gate %i cannot be part of a memory", + (1 => +Last)); + end if; return No_Instance; end case; end loop; |