back.verilog: remove undriven check.
authorwhitequark <cz@m-labs.hk>
Tue, 8 Jan 2019 20:42:56 +0000 (20:42 +0000)
committerwhitequark <cz@m-labs.hk>
Tue, 8 Jan 2019 22:43:09 +0000 (22:43 +0000)
This check no longer finds bugs and is prone to false positives.
Instead, we should do integration tests on the entire stack, from
fragments to Verilog.

Fixes #23.

nmigen/back/verilog.py

index 249075d9a53ed4516cdf31170a94b56ee455b70f..0b86fe3f1818c1b45b8647b2245b086a8e2cbbc4 100644 (file)
@@ -29,9 +29,6 @@ proc_dff
 proc_clean
 memory_collect
 write_verilog -norename
-# Make sure there are no undriven wires in generated RTLIL.
-proc
-select -assert-none w:* i:* %a %d o:* %a %ci* %d c:* %co* %a %d n:$* %d
 """.format(il_text))
     if popen.returncode:
         raise YosysError(error.strip())