HOTFIX: Add parenthesis to "inside" constraint in corev-dv (#1610)

This commit is contained in:
Jalali 2023-11-08 17:59:51 +01:00 committed by GitHub
parent 5a7bbafdab
commit 3c45510934
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,9 +211,9 @@ class cva6_unsupported_instr_c extends uvm_object;
if (instr_bin[12:10] != 3'b111) {
instr_bin[6:2] == 5'b0;
}
else {
!instr_bin[6:5] inside {2'b10, 2'b11};
}
else {
!(instr_bin[6:5] inside {2'b10, 2'b11});
}
}
if (c_op == 2'b10) {
!(c_msb inside {3'b100, 3'b010, 3'b110});