aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/main.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-29 12:02:34 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-29 12:02:34 +0200
commitc18b7b3f6ecb03cb264d83df6da4d85c16716737 (patch)
tree2b55e28328b18a4f8af31ea724163bf30b14da2d /ice40/main.cc
parent960c65047877c72498d65ecc401371ab1552c82a (diff)
downloadnextpnr-c18b7b3f6ecb03cb264d83df6da4d85c16716737.tar.gz
nextpnr-c18b7b3f6ecb03cb264d83df6da4d85c16716737.tar.bz2
nextpnr-c18b7b3f6ecb03cb264d83df6da4d85c16716737.zip
ice40: Reworking placement legalisation to allow integration with SA placer
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40/main.cc')
-rw-r--r--ice40/main.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/ice40/main.cc b/ice40/main.cc
index e30553b1..8f500efb 100644
--- a/ice40/main.cc
+++ b/ice40/main.cc
@@ -126,16 +126,18 @@ int main(int argc, char *argv[])
if (vm.count("help") || argc == 1) {
help:
- std::cout << boost::filesystem::basename(argv[0]) << " -- Next Generation Place and Route (git "
- "sha1 " GIT_COMMIT_HASH_STR ")\n";
+ std::cout << boost::filesystem::basename(argv[0])
+ << " -- Next Generation Place and Route (git "
+ "sha1 " GIT_COMMIT_HASH_STR ")\n";
std::cout << "\n";
std::cout << options << "\n";
return argc != 1;
}
if (vm.count("version")) {
- std::cout << boost::filesystem::basename(argv[0]) << " -- Next Generation Place and Route (git "
- "sha1 " GIT_COMMIT_HASH_STR ")\n";
+ std::cout << boost::filesystem::basename(argv[0])
+ << " -- Next Generation Place and Route (git "
+ "sha1 " GIT_COMMIT_HASH_STR ")\n";
return 1;
}