aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/main.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie.hung+gitlab@gmail.com>2018-07-26 00:54:04 +0000
committerEddie Hung <eddie.hung+gitlab@gmail.com>2018-07-26 00:54:04 +0000
commitf78a74b9cff79a41f992cfaf20deb88054ea27a6 (patch)
tree5086d59b3be9b4a0b6b3959955db79dc7c5f0bd9 /ice40/main.cc
parent7a8e8999d21205044e707a2765dc444531d69cef (diff)
parent950f33c1bb6260f830e6974583d0e1424146b386 (diff)
downloadnextpnr-f78a74b9cff79a41f992cfaf20deb88054ea27a6.tar.gz
nextpnr-f78a74b9cff79a41f992cfaf20deb88054ea27a6.tar.bz2
nextpnr-f78a74b9cff79a41f992cfaf20deb88054ea27a6.zip
Merge branch 'eddieh/idstring_speedup' into 'master'
Reduce id() lookups for commonly used update_budget() See merge request SymbioticEDA/nextpnr!20
Diffstat (limited to 'ice40/main.cc')
-rw-r--r--ice40/main.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/ice40/main.cc b/ice40/main.cc
index 4de05d00..6201831a 100644
--- a/ice40/main.cc
+++ b/ice40/main.cc
@@ -144,18 +144,16 @@ int main(int argc, char *argv[])
#endif
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;
}