Skip to content

Commit 18ed5d3

Browse files
committed
id_queue: Fix formatting
1 parent 483f059 commit 18ed5d3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/id_queue.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,8 @@ module id_queue #(
365365
// For a match, the entry needs to be occupied AND
366366
// the masked slot data needs to match the masked query data.
367367
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]));
368+
((linked_data_q[i].data & exists_mask_i[k]) ==
369+
(exists_data_i[k] & exists_mask_i[k]));
369370
end
370371
always_comb begin
371372
exists_gnt_o[k] = 1'b0;

0 commit comments

Comments
 (0)