clangformat

This commit is contained in:
Eddie Hung 2018-07-25 18:22:23 -07:00
parent 760a47779a
commit e2f8deec41
3 changed files with 5 additions and 5 deletions

View File

@ -497,7 +497,8 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
delay_t Arch::getBudgetOverride(const PortRef &pr, delay_t v) const
{
if (pr.port == id("COUT")) return 0;
if (pr.port == id("COUT"))
return 0;
return v;
}

View File

@ -366,8 +366,7 @@ int main(int argc, char *argv[])
if (vm.count("freq")) {
ctx->target_freq = vm["freq"].as<double>() * 1e6;
ctx->user_freq = true;
}
else {
} else {
log_warning("Target frequency not specified. Will optimise for max frequency.\n");
}