diff options
Diffstat (limited to 'src/sim/dum.cc')
-rw-r--r-- | src/sim/dum.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sim/dum.cc b/src/sim/dum.cc index 76d4acd..ab4eaa4 100644 --- a/src/sim/dum.cc +++ b/src/sim/dum.cc @@ -3,7 +3,6 @@ #include "instrDTO.h" #include "response.h" #include "stage.h" -#include "utils.h" DUM::DUM(Stage *stage) : Stage(stage) { this->id = IDLE; } @@ -12,7 +11,6 @@ InstrDTO *DUM::advance(Response p) InstrDTO *r = nullptr; if (this->curr_instr && p == WAIT) { - this->curr_instr->set_time_of(this->id, this->clock_cycle); r = new InstrDTO(*this->curr_instr); delete this->curr_instr; curr_instr = nullptr; |