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 483f059 commit 18ed5d3Copy full SHA for 18ed5d3
1 file changed
src/id_queue.sv
@@ -365,7 +365,8 @@ module id_queue #(
365
// For a match, the entry needs to be occupied AND
366
// the masked slot data needs to match the masked query data.
367
assign exists_match[k][i] = ~linked_data_q[i].free &
368
- ((linked_data_q[i].data & exists_mask_i[k]) == (exists_data_i[k] & exists_mask_i[k]));
+ ((linked_data_q[i].data & exists_mask_i[k]) ==
369
+ (exists_data_i[k] & exists_mask_i[k]));
370
end
371
always_comb begin
372
exists_gnt_o[k] = 1'b0;
0 commit comments