diff options
| author | Maciej Dudek <mdudek@antmicro.com> | 2021-09-27 16:16:33 +0200 | 
|---|---|---|
| committer | Maciej Dudek <mdudek@antmicro.com> | 2021-09-27 16:16:33 +0200 | 
| commit | ea489f6d934ac6e649bcd81e10856e809f6b30d2 (patch) | |
| tree | 54c7619fc75d7e2100b970112d1aa78f75451867 /fpga_interchange/macros.cc | |
| parent | 439ae9609b8245e56cda9c8f38f8d6a4bde90d5b (diff) | |
| download | nextpnr-ea489f6d934ac6e649bcd81e10856e809f6b30d2.tar.gz nextpnr-ea489f6d934ac6e649bcd81e10856e809f6b30d2.tar.bz2 nextpnr-ea489f6d934ac6e649bcd81e10856e809f6b30d2.zip  | |
Fix small isses and code formatting
Signed-off-by: Maciej Dudek <mdudek@antmicro.com>
Diffstat (limited to 'fpga_interchange/macros.cc')
| -rw-r--r-- | fpga_interchange/macros.cc | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/fpga_interchange/macros.cc b/fpga_interchange/macros.cc index 4011f683..aa7d3184 100644 --- a/fpga_interchange/macros.cc +++ b/fpga_interchange/macros.cc @@ -79,7 +79,6 @@ void Arch::expand_macros()              // Get the ultimate root of this macro expansion              IdString parent = (cell->macro_parent == IdString()) ? cell->name : cell->macro_parent; -            log_info("%s %s\n", cell->name.c_str(ctx), parent.c_str(ctx));              // Create child instances              for (const auto &inst : macro->cell_insts) {                  CellInfo *inst_cell = @@ -88,7 +87,6 @@ void Arch::expand_macros()                      inst_cell->params[IdString(param.key)] = IdString(param.value).str(ctx);                  }                  inst_cell->macro_parent = parent; -                log_info("  %s %s\n", inst_cell->name.c_str(ctx), inst_cell->type.c_str(ctx));                  next_cells.push_back(inst_cell);              }              // Create and connect nets  | 
