From 24a7d608aa84d6549a52e54726e1379e97cac146 Mon Sep 17 00:00:00 2001 From: bd Date: Sat, 29 Mar 2025 20:18:51 -0400 Subject: Add tests for read/write guards --- src/sim/stage.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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; }; -- cgit v1.2.3