aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/synth/netlists-memories.adb9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/synth/netlists-memories.adb b/src/synth/netlists-memories.adb
index d41468f86..9098cbfb1 100644
--- a/src/synth/netlists-memories.adb
+++ b/src/synth/netlists-memories.adb
@@ -723,9 +723,12 @@ package body Netlists.Memories is
when Id_Const_Bit =>
Check_Memory_Read_Ports (Inst, Data_W, Size);
if Data_W /= 0 then
- Info_Msg_Synth
- (+Inst, "found ROM %n, width: %v bits, depth: %v",
- (1 => +Inst, 2 => +Data_W, 3 => +Size));
+ if Get_Location (Inst) /= No_Location then
+ -- Not all Const_Bit have a location...
+ Info_Msg_Synth
+ (+Inst, "found ROM %n, width: %v bits, depth: %v",
+ (1 => +Inst, 2 => +Data_W, 3 => +Size));
+ end if;
Replace_ROM_Memory (Ctxt, Inst);
end if;
when others =>