diff options
author | myrtle <gatecat@ds0.me> | 2022-08-11 07:26:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 07:26:20 +0100 |
commit | b653e39991429dc3350447f8b69030c454dd2ba7 (patch) | |
tree | b6bc6fe3cecc6962e12e61b9febb5c85e06960ed /mistral | |
parent | a20d21bd135aceb9155eaee714488d1d76c60898 (diff) | |
parent | c60fb94b6c45ca74632e972995555170063b3a03 (diff) | |
download | nextpnr-b653e39991429dc3350447f8b69030c454dd2ba7.tar.gz nextpnr-b653e39991429dc3350447f8b69030c454dd2ba7.tar.bz2 nextpnr-b653e39991429dc3350447f8b69030c454dd2ba7.zip |
Merge pull request #1012 from YosysHQ/gatecat/refactor-id-in
refactor: Use IdString::in instead of || chains
Diffstat (limited to 'mistral')
-rw-r--r-- | mistral/globals.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mistral/globals.cc b/mistral/globals.cc index 6af8920d..bdd835a7 100644 --- a/mistral/globals.cc +++ b/mistral/globals.cc @@ -38,10 +38,7 @@ void Arch::create_clkbuf(int x, int y) } } -bool Arch::is_clkbuf_cell(IdString cell_type) const -{ - return cell_type == id_MISTRAL_CLKENA || cell_type == id_MISTRAL_CLKBUF; -} +bool Arch::is_clkbuf_cell(IdString cell_type) const { return cell_type.in(id_MISTRAL_CLKENA, id_MISTRAL_CLKBUF); } void Arch::create_hps_mpu_general_purpose(int x, int y) { |