aboutsummaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2022-03-24 17:25:09 +0100
committerGitHub <noreply@github.com>2022-03-24 17:25:09 +0100
commit89dcd7c31ef1dea2201f9514c0c4b5324e6066df (patch)
tree310c7442a0b8c9a665af7d34cb8658627e7e5abd /backends
parent6318db6152d053244adb316fda6e01a32a4f3c72 (diff)
parenta7ee01065acc3522277230bcb31859193033d723 (diff)
downloadyosys-89dcd7c31ef1dea2201f9514c0c4b5324e6066df.tar.gz
yosys-89dcd7c31ef1dea2201f9514c0c4b5324e6066df.tar.bz2
yosys-89dcd7c31ef1dea2201f9514c0c4b5324e6066df.zip
Merge pull request #3243 from nakengelhardt/fix_aiw_comment
smtbmc: ignore # comment lines
Diffstat (limited to 'backends')
-rw-r--r--backends/smt2/smtbmc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py
index 7e0d8f571..7527f4105 100644
--- a/backends/smt2/smtbmc.py
+++ b/backends/smt2/smtbmc.py
@@ -492,7 +492,7 @@ if aimfile is not None:
got_state = True
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
if not got_state: