aboutsummaryrefslogtreecommitdiff
path: root/riscv/plic.cc
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/plic.cc')
-rw-r--r--riscv/plic.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/plic.cc b/riscv/plic.cc
index 9f19bef..1dd8a72 100644
--- a/riscv/plic.cc
+++ b/riscv/plic.cc
@@ -67,7 +67,7 @@
#define REG_SIZE 0x1000000
plic_t::plic_t(std::vector<processor_t*>& procs, bool smode, uint32_t ndev)
- : procs(procs), contexts(procs.size() * (smode ? 2 : 1))
+ : contexts(procs.size() * (smode ? 2 : 1))
{
size_t contexts_per_hart = smode ? 2 : 1;