diff options
author | David Shah <dave@ds0.me> | 2019-08-07 14:46:53 +0100 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2019-08-07 14:46:53 +0100 |
commit | e55946bec770e97d5441b9982338618b04ff2807 (patch) | |
tree | d9652423d50d6c967e69adc48b4cb820102e1987 /ecp5/main.cc | |
parent | 661237eb64a694a11900f736b07132ef8da4b0dd (diff) | |
download | nextpnr-e55946bec770e97d5441b9982338618b04ff2807.tar.gz nextpnr-e55946bec770e97d5441b9982338618b04ff2807.tar.bz2 nextpnr-e55946bec770e97d5441b9982338618b04ff2807.zip |
clangfromat
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5/main.cc')
-rw-r--r-- | ecp5/main.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc index 71dffc8d..4ae0e27d 100644 --- a/ecp5/main.cc +++ b/ecp5/main.cc @@ -71,7 +71,9 @@ po::options_description ECP5CommandHandler::getArchOptions() specific.add_options()("lpf", po::value<std::vector<std::string>>(), "LPF pin constraint file(s)"); specific.add_options()("lpf-allow-unconstrained", "don't require LPF file(s) to constrain all IO"); - specific.add_options()("out-of-context", "disable IO buffer insertion and global promotion/routing, for building pre-routed blocks (experimental)"); + specific.add_options()( + "out-of-context", + "disable IO buffer insertion and global promotion/routing, for building pre-routed blocks (experimental)"); return specific; } @@ -94,7 +96,8 @@ void ECP5CommandHandler::customBitstream(Context *ctx) } if (bool_or_default(ctx->settings, ctx->id("arch.ooc")) && vm.count("textcfg")) - log_error("bitstream generation is not available in out-of-context mode (use --write to create a post-PnR JSON design)\n"); + log_error("bitstream generation is not available in out-of-context mode (use --write to create a post-PnR JSON " + "design)\n"); std::string textcfg; if (vm.count("textcfg")) |