From: Scott Beamer Date: Mon, 23 Sep 2013 22:49:23 +0000 (-0700) Subject: fixes compile bug for not being able to find std::logic_error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=548315acd9936fb0352281032f414639508560f3;p=riscv-isa-sim.git fixes compile bug for not being able to find std::logic_error --- diff --git a/riscv/processor.cc b/riscv/processor.cc index 2bd2155..839c846 100644 --- a/riscv/processor.cc +++ b/riscv/processor.cc @@ -12,6 +12,7 @@ #include #include #include +#include processor_t::processor_t(sim_t* _sim, mmu_t* _mmu, uint32_t _id) : sim(_sim), mmu(_mmu), ext(NULL), id(_id), opcode_bits(0)