diff options
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/stage.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sim/stage.cc b/src/sim/stage.cc index a8f3f9e..62a7fd6 100644 --- a/src/sim/stage.cc +++ b/src/sim/stage.cc @@ -8,6 +8,7 @@ Stage::Stage(Stage *next) this->next = next; this->curr_instr = nullptr; this->status = OK; + this->checked_out = {}; } Stage::~Stage() { delete this->next; }; |