aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2018-10-16 14:37:58 +0100
committerDavid Shah <dave@ds0.me>2018-10-16 14:37:58 +0100
commit1cde2080902c25d2a59e8ebb5b0b23a90f693e8e (patch)
tree7f2046f65cafddfc443cb8efc006e1f518a3c5b8 /ecp5/arch.cc
parent8aac6db44b0ede432cdf1723b8a53ed827aa649d (diff)
downloadnextpnr-1cde2080902c25d2a59e8ebb5b0b23a90f693e8e.tar.gz
nextpnr-1cde2080902c25d2a59e8ebb5b0b23a90f693e8e.tar.bz2
nextpnr-1cde2080902c25d2a59e8ebb5b0b23a90f693e8e.zip
clangformat
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r--ecp5/arch.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index b674e1b7..1be76c07 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -79,9 +79,11 @@ Arch::Arch(ArchArgs args) : args(args)
#else
if (args.type == ArchArgs::LFE5U_25F || args.type == ArchArgs::LFE5UM_25F || args.type == ArchArgs::LFE5UM5G_25F) {
chip_info = get_chip_info(reinterpret_cast<const RelPtr<ChipInfoPOD> *>(chipdb_blob_25k));
- } else if (args.type == ArchArgs::LFE5U_45F || args.type == ArchArgs::LFE5UM_45F || args.type == ArchArgs::LFE5UM5G_45F) {
+ } else if (args.type == ArchArgs::LFE5U_45F || args.type == ArchArgs::LFE5UM_45F ||
+ args.type == ArchArgs::LFE5UM5G_45F) {
chip_info = get_chip_info(reinterpret_cast<const RelPtr<ChipInfoPOD> *>(chipdb_blob_45k));
- } else if (args.type == ArchArgs::LFE5U_85F || args.type == ArchArgs::LFE5UM_85F || args.type == ArchArgs::LFE5UM5G_85F) {
+ } else if (args.type == ArchArgs::LFE5U_85F || args.type == ArchArgs::LFE5UM_85F ||
+ args.type == ArchArgs::LFE5UM5G_85F) {
chip_info = get_chip_info(reinterpret_cast<const RelPtr<ChipInfoPOD> *>(chipdb_blob_85k));
} else {
log_error("Unsupported ECP5 chip type.\n");