aboutsummaryrefslogtreecommitdiff
path: root/riscv/triggers.h
diff options
context:
space:
mode:
authorScott Johnson <scott.johnson@arilinc.com>2022-12-01 10:29:10 -0800
committerScott Johnson <scott.johnson@arilinc.com>2022-12-01 10:29:10 -0800
commit49ccab0fcfdf7dd37e2c5b93f0e22c46321f4b26 (patch)
tree69e4bc8028c366e2f0fe39793269c5307da27c8f /riscv/triggers.h
parent4b792f570d76a41642a1ef629b6f30dea830ea38 (diff)
downloadriscv-isa-sim-49ccab0fcfdf7dd37e2c5b93f0e22c46321f4b26.zip
riscv-isa-sim-49ccab0fcfdf7dd37e2c5b93f0e22c46321f4b26.tar.gz
riscv-isa-sim-49ccab0fcfdf7dd37e2c5b93f0e22c46321f4b26.tar.bz2
Remove unused constructor arg from match_result_t
Diffstat (limited to 'riscv/triggers.h')
-rw-r--r--riscv/triggers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/triggers.h b/riscv/triggers.h
index ac2ea29..37759df 100644
--- a/riscv/triggers.h
+++ b/riscv/triggers.h
@@ -30,7 +30,7 @@ typedef enum {
} timing_t;
struct match_result_t {
- match_result_t(const bool UNUSED f, const timing_t t=TIMING_BEFORE, const action_t a=ACTION_DEBUG_EXCEPTION) {
+ match_result_t(const timing_t t=TIMING_BEFORE, const action_t a=ACTION_DEBUG_EXCEPTION) {
timing = t;
action = a;
}