aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-07-22 00:50:49 +0200
committerClifford Wolf <clifford@clifford.at>2018-07-22 00:50:49 +0200
commit1e96999863da24021c215a3706b5a442789ba3a7 (patch)
treea143003eac5b98114234bef0aafdfe6bc94c54f5 /ice40/arch.cc
parent44f52234fb95ee3031f8ccea35e15b52c19e7b14 (diff)
downloadnextpnr-1e96999863da24021c215a3706b5a442789ba3a7.tar.gz
nextpnr-1e96999863da24021c215a3706b5a442789ba3a7.tar.bz2
nextpnr-1e96999863da24021c215a3706b5a442789ba3a7.zip
clangformat
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 5d7d1fb4..3833dcb7 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -283,8 +283,7 @@ BelRange Arch::getBelsByTile(int x, int y) const
br.e.cursor = br.b.cursor;
if (br.e.cursor != -1) {
- while (br.e.cursor < chip_info->num_bels &&
- chip_info->bel_data[br.e.cursor].x == x &&
+ while (br.e.cursor < chip_info->num_bels && chip_info->bel_data[br.e.cursor].x == x &&
chip_info->bel_data[br.e.cursor].y == y)
br.e.cursor++;
}