mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 05:37:16 -04:00
HOTFIX : ignore instr_addr_misaliged exception only when also there's a trap (#2174)
This commit is contained in:
parent
c30c20bc2b
commit
9ddebe25ae
1 changed files with 1 additions and 1 deletions
2
verif/env/uvme/cov/uvme_exception_covg.sv
vendored
2
verif/env/uvme/cov/uvme_exception_covg.sv
vendored
|
@ -42,7 +42,7 @@ covergroup cg_exception(
|
|||
bins ILLEGAL_INSTR = {2} iff (instr.trap);
|
||||
|
||||
ignore_bins IGN_ADDR_MISALIGNED_EXC = {0, 4, 6} iff (unaligned_access_supported);
|
||||
ignore_bins IGN_INSTR_ADDR_MISALIGNED_EXC = {0} iff (ext_c_supported);
|
||||
ignore_bins IGN_INSTR_ADDR_MISALIGNED_EXC = {0} iff (ext_c_supported && instr.trap);
|
||||
bins INSTR_ADDR_MISALIGNED = {0} iff (instr.trap);
|
||||
|
||||
bins LD_ADDR_MISALIGNED = {4} iff (instr.trap);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue