mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-28 17:24:11 -04:00
[dv] Fix a missed Riviera compile warning (#576)
Signed-off-by: Udi <udij@google.com>
This commit is contained in:
parent
6d26025019
commit
32a69899a9
1 changed files with 1 additions and 1 deletions
|
@ -833,7 +833,7 @@ class core_ibex_mem_error_test extends core_ibex_directed_test;
|
|||
check_priv_mode(PRIV_LVL_M);
|
||||
// Next write of CORE_STATUS will be the load/store fault type
|
||||
wait_for_mem_txn(cfg.signature_addr, CORE_STATUS);
|
||||
mem_status = signature_data_q.pop_front();
|
||||
mem_status = core_status_t'(signature_data_q.pop_front());
|
||||
if (mem_status == LOAD_FAULT_EXCEPTION) begin
|
||||
exc_type = EXC_CAUSE_LOAD_ACCESS_FAULT;
|
||||
end else if (mem_status == STORE_FAULT_EXCEPTION) begin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue