Makefile: Silence warnings about array sensitivity
Icarus verilog complains if you are sensitive to every element in an array: rtl/mii_elastic_buffer.v:78: warning: @* is sensitive to all 5 words in array 'data'. This makes sense if you intend to synthesize this array to a block RAM, but not really if it's supposed to be registers. Silence this warning. Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
e27d79b7c1
commit
81de945030
5
Makefile
5
Makefile
|
@ -37,8 +37,11 @@ endef
|
|||
%.place.v: %.place.json %.v
|
||||
$(run-jsontov)
|
||||
|
||||
IFLAGS := -g2012 -gspecify -Wall
|
||||
# Don't warn about including the timescale from common.vh
|
||||
IFLAGS := -g2012 -gspecify -Wall -Wno-timescale
|
||||
IFLAGS += -Wno-timescale
|
||||
# Don't warn about mem2reg sensitivity
|
||||
IFLAGS += -Wno-sensitivity-entire-array
|
||||
EXTRA_V := rtl/iverilog_dump.v
|
||||
|
||||
define run-icarus =
|
||||
|
|
Loading…
Reference in New Issue