diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-01 11:10:44 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-01 11:10:44 -0700 |
commit | ac5f3d500db46a4312d77f43fded2feb25545a3a (patch) | |
tree | 291bc7c1522b84e0204ffecb2688adba940419f0 /frontends | |
parent | ef757002dbc8280a65d25618e57b20d3dbadd64a (diff) | |
download | yosys-ac5f3d500db46a4312d77f43fded2feb25545a3a.tar.gz yosys-ac5f3d500db46a4312d77f43fded2feb25545a3a.tar.bz2 yosys-ac5f3d500db46a4312d77f43fded2feb25545a3a.zip |
Fix spacing
Diffstat (limited to 'frontends')
-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 7f81a4c89..57a164f1b 100644 --- a/frontends/aiger/aigerparse.cc +++ b/frontends/aiger/aigerparse.cc @@ -756,7 +756,7 @@ void AigerReader::post_process() log_assert(flop_module); flop_past_q = box_module->attributes.at("\\abc_flop_past_q").decode_string(); } - else if (seen_boxes.insert(cell->type).second) { + else if (seen_boxes.insert(cell->type).second) { auto it = box_module->attributes.find("\\abc_carry"); if (it != box_module->attributes.end()) { RTLIL::Wire *carry_in = nullptr, *carry_out = nullptr; |