aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 9dbc78bb..8f52987c 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -631,14 +631,13 @@ bool Arch::place()
{
if (!placer1(getCtx(), Placer1Cfg(getCtx())))
return false;
- if(bool_or_default(settings, id("opt_timing"), false)) {
+ if (bool_or_default(settings, id("opt_timing"), false)) {
TimingOptCfg tocfg(getCtx());
tocfg.cellTypes.insert(id_ICESTORM_LC);
return timing_opt(getCtx(), tocfg);
} else {
return true;
}
-
}
bool Arch::route() { return router1(getCtx(), Router1Cfg(getCtx())); }