mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #3243 from nakengelhardt/fix_aiw_comment
smtbmc: ignore # comment lines
This commit is contained in:
commit
89dcd7c31e
|
@ -492,7 +492,7 @@ if aimfile is not None:
|
||||||
got_state = True
|
got_state = True
|
||||||
|
|
||||||
for entry in f.read().splitlines():
|
for entry in f.read().splitlines():
|
||||||
if len(entry) == 0 or entry[0] in "bcjfu.":
|
if len(entry) == 0 or entry[0] in "bcjfu.#":
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not got_state:
|
if not got_state:
|
||||||
|
|
Loading…
Reference in New Issue