diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:16 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:16 -0400 |
commit | 3a057bdbb10a265fb36f7827cd06142ad1624530 (patch) | |
tree | b46e844fd6006561a0033aaefe8790b02c50752b /src/cpu/inorder/cpu.hh | |
parent | f1c97e830b2bf9d1fb457050f97dfd4ec9312932 (diff) | |
download | gem5-3a057bdbb10a265fb36f7827cd06142ad1624530.tar.xz |
inorder-tlb: squash insts in TLB correctly
TLB had a bug where if it was stalled and waiting , it would not squash all instructions older than squashed instruction correctly
* * *
Diffstat (limited to 'src/cpu/inorder/cpu.hh')
-rw-r--r-- | src/cpu/inorder/cpu.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/inorder/cpu.hh b/src/cpu/inorder/cpu.hh index e3bfbb7f0..ea5404c60 100644 --- a/src/cpu/inorder/cpu.hh +++ b/src/cpu/inorder/cpu.hh @@ -175,6 +175,8 @@ class InOrderCPU : public BaseCPU NumCPUEvents }; + static std::string eventNames[NumCPUEvents]; + /** Define CPU Event */ class CPUEvent : public Event { |