diff options
author | bd <bdunaisky@umass.edu> | 2025-04-21 20:01:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-21 20:01:34 +0000 |
commit | 282e2644ef0470133184fdf9900cf2565ec5332b (patch) | |
tree | 43238110a03ce678f1a68b0b4175ae023527b070 /src/sim/id.cc | |
parent | 4a19129e8499bc187ef6e296e050cc8a20bcc2d3 (diff) | |
parent | d933a0405b7a7dff3cf05839ac99d120cafa4d75 (diff) |
Merge pull request #56 from bdunahu/dev-sid
Dev sid
Diffstat (limited to 'src/sim/id.cc')
-rw-r--r-- | src/sim/id.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/id.cc b/src/sim/id.cc index db72486..3753f83 100644 --- a/src/sim/id.cc +++ b/src/sim/id.cc @@ -221,7 +221,7 @@ std::vector<int> ID::stage_info() { std::vector<int> info; if (this->curr_instr) { - info.push_back(this->curr_instr->get_pc()); + info.push_back(this->curr_instr->is_squashed()); info.push_back(this->curr_instr->get_instr_bits()); } return info; |