diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-19 10:42:00 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-19 10:42:00 -0700 |
commit | 3f4886e7a3ff14578b9c6d614efd360478e5886e (patch) | |
tree | 7f30e0e9e1a26689c21ecd937c4528c187248fd8 | |
parent | 7e010834ebaaf6e5c87bc29710feee78298bf369 (diff) | |
download | yosys-3f4886e7a3ff14578b9c6d614efd360478e5886e.tar.gz yosys-3f4886e7a3ff14578b9c6d614efd360478e5886e.tar.bz2 yosys-3f4886e7a3ff14578b9c6d614efd360478e5886e.zip |
Fix typo
-rw-r--r-- | frontends/aiger/aigerparse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/aiger/aigerparse.cc b/frontends/aiger/aigerparse.cc index ac9e31f70..06522939f 100644 --- a/frontends/aiger/aigerparse.cc +++ b/frontends/aiger/aigerparse.cc @@ -451,7 +451,7 @@ void AigerReader::parse_xaiger(const dict<int,IdString> &box_lookup) uint32_t poNum YS_ATTRIBUTE(unused) = parse_xaiger_literal(f); log_debug("poNum = %u\n", poNum); uint32_t boxNum = parse_xaiger_literal(f); - log_debug("boxNum = %u\n", poNum); + log_debug("boxNum = %u\n", boxNum); for (unsigned i = 0; i < boxNum; i++) { f.ignore(2*sizeof(uint32_t)); uint32_t boxUniqueId = parse_xaiger_literal(f); |