compressed_decoder.sv: remove useless condition (#1636)

This commit is contained in:
André Sintzoff 2023-11-16 16:58:26 +01:00 committed by GitHub
parent d0cba61b16
commit 25f85a5698
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -928,7 +928,7 @@ module compressed_decoder #(
endcase
// Check if the instruction was illegal, if it was then output the offending instruction (zero-extended)
if (illegal_instr_o && is_compressed_o) begin
if (illegal_instr_o) begin
instr_o = instr_i;
end
end