We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14ce2e commit 3c49fe0Copy full SHA for 3c49fe0
fpga/assembler.cc
@@ -108,10 +108,9 @@ static absl::Status ProcessFasmFeatures(
108
absl::flat_hash_set<fpga::ConfigBusType> used_config_buses;
109
// Select only bit addresses with value bit set to 1.
110
for (int addr = 0; addr < tile_feature.width; ++addr) {
111
- const unsigned bit_addr = (addr + tile_feature.start_bit);
112
- const bool value = bits & (1 << bit_addr);
+ const unsigned feature_addr = (addr + tile_feature.start_bit);
+ const bool value = bits & (1 << feature_addr);
113
if (value) {
114
- const int feature_addr = addr + tile_feature.start_bit;
115
db.ConfigBits(
116
tile_name, feature, feature_addr,
117
[&frames, &used_config_buses](
0 commit comments