diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-09-20 02:46:42 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-09-20 02:46:42 -0700 |
commit | ab8d7eee76e9d439070fe116fb23e0afe7aa74c3 (patch) | |
tree | 2fc54a18e5233e875c664b4897368805b425a174 /src/cpu/o3/cpu.hh | |
parent | 3f9f4bf3d6ce9080adb03966599e0f1a98b091eb (diff) | |
download | gem5-ab8d7eee76e9d439070fe116fb23e0afe7aa74c3.tar.xz |
CPU: Fix O3 and possible InOrder segfaults in FS.
Diffstat (limited to 'src/cpu/o3/cpu.hh')
-rw-r--r-- | src/cpu/o3/cpu.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/cpu.hh b/src/cpu/o3/cpu.hh index e7368993b..57c07a9ec 100644 --- a/src/cpu/o3/cpu.hh +++ b/src/cpu/o3/cpu.hh @@ -367,7 +367,7 @@ class FullO3CPU : public BaseO3CPU { return globalSeqNum++; } /** Traps to handle given fault. */ - void trap(Fault fault, ThreadID tid, DynInstPtr inst); + void trap(Fault fault, ThreadID tid, StaticInstPtr inst); #if FULL_SYSTEM /** HW return from error interrupt. */ |