aboutsummaryrefslogtreecommitdiff
path: root/riscv/execute.cc
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/execute.cc')
-rw-r--r--riscv/execute.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscv/execute.cc b/riscv/execute.cc
index 1426d2d..3c627a4 100644
--- a/riscv/execute.cc
+++ b/riscv/execute.cc
@@ -302,9 +302,9 @@ void processor_t::step(size_t n)
n = instret;
// Trigger action takes priority over single step
- triggers::match_result_t match = TM.detect_trap_match(t);
- if (match.fire)
- take_trigger_action(match.action, 0, state.pc);
+ auto match = TM.detect_trap_match(t);
+ if (match.has_value())
+ take_trigger_action(match->action, 0, state.pc);
else if (unlikely(state.single_step == state.STEP_STEPPED)) {
state.single_step = state.STEP_NONE;
enter_debug_mode(DCSR_CAUSE_STEP);