diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-20 12:23:49 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-20 12:23:49 -0700 |
commit | caec7f9d2c87e3978c51d0a4171b24cc4b363885 (patch) | |
tree | 56dfa79f4f3bad0f38165cf55978058dd7665f4c /backends/btor/btor.cc | |
parent | af4652522fd01aaec84664e65d7fe1474c578c49 (diff) | |
parent | f84a84e3f1a27b361c21fcd30fcf50c1a6586629 (diff) | |
download | yosys-caec7f9d2c87e3978c51d0a4171b24cc4b363885.tar.gz yosys-caec7f9d2c87e3978c51d0a4171b24cc4b363885.tar.bz2 yosys-caec7f9d2c87e3978c51d0a4171b24cc4b363885.zip |
Merge remote-tracking branch 'origin/master' into xaig
Diffstat (limited to 'backends/btor/btor.cc')
-rw-r--r-- | backends/btor/btor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/btor/btor.cc b/backends/btor/btor.cc index 55c494996..91f238fa5 100644 --- a/backends/btor/btor.cc +++ b/backends/btor/btor.cc @@ -340,7 +340,7 @@ struct BtorWorker if (cell->type == "$lt") btor_op = "lt"; if (cell->type == "$le") btor_op = "lte"; if (cell->type.in("$eq", "$eqx")) btor_op = "eq"; - if (cell->type.in("$ne", "$nex")) btor_op = "ne"; + if (cell->type.in("$ne", "$nex")) btor_op = "neq"; if (cell->type == "$ge") btor_op = "gte"; if (cell->type == "$gt") btor_op = "gt"; log_assert(!btor_op.empty()); |