diff options
Diffstat (limited to 'ice40/pcf.cc')
-rw-r--r-- | ice40/pcf.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ice40/pcf.cc b/ice40/pcf.cc index 6fc90118..756aba4a 100644 --- a/ice40/pcf.cc +++ b/ice40/pcf.cc @@ -58,8 +58,7 @@ void apply_pcf(Context *ctx, std::istream &in) if (pin_bel == BelId()) log_error("package does not have a pin named %s\n", pin.c_str()); - fnd_cell->second->attrs["BEL"] = - ctx->getBelName(pin_bel).str(); + fnd_cell->second->attrs["BEL"] = ctx->getBelName(pin_bel).str(); log_info("constrained '%s' to bel '%s'\n", cell.c_str(), fnd_cell->second->attrs["BEL"].c_str()); } |