Run "make clangformat".

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2021-02-18 16:57:09 -08:00
parent 15459cae91
commit 3ccb164f2a

View File

@ -898,7 +898,8 @@ struct Arch : ArchAPI<ArchRanges>
return tile_status.sites.at(bel_data.site); return tile_status.sites.at(bel_data.site);
} }
BelId get_vcc_bel() const { BelId get_vcc_bel() const
{
auto &constants = chip_info->constants; auto &constants = chip_info->constants;
BelId bel; BelId bel;
bel.tile = constants->vcc_bel_tile; bel.tile = constants->vcc_bel_tile;
@ -906,7 +907,8 @@ struct Arch : ArchAPI<ArchRanges>
return bel; return bel;
} }
BelId get_gnd_bel() const { BelId get_gnd_bel() const
{
auto &constants = chip_info->constants; auto &constants = chip_info->constants;
BelId bel; BelId bel;
bel.tile = constants->gnd_bel_tile; bel.tile = constants->gnd_bel_tile;
@ -1689,7 +1691,7 @@ struct Arch : ArchAPI<ArchRanges>
// static partitions. // static partitions.
bool is_bel_synthetic(BelId bel) const bool is_bel_synthetic(BelId bel) const
{ {
const BelInfoPOD & bel_data = bel_info(chip_info, bel); const BelInfoPOD &bel_data = bel_info(chip_info, bel);
return bel_data.synthetic != 0; return bel_data.synthetic != 0;
} }
@ -1701,7 +1703,7 @@ struct Arch : ArchAPI<ArchRanges>
bool is_pip_synthetic(PipId pip) const bool is_pip_synthetic(PipId pip) const
{ {
auto &pip_data = pip_info(chip_info, pip); auto &pip_data = pip_info(chip_info, pip);
if(pip_data.site == -1) { if (pip_data.site == -1) {
return pip_data.extra_data == -1; return pip_data.extra_data == -1;
} else { } else {
BelId bel; BelId bel;