diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-06-22 18:10:17 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-06-22 18:10:17 -0400 |
commit | e6c04b1584998ed2ea532da4070b356c75906f63 (patch) | |
tree | 940545a432e9697fd8b630e04757ec18f385ece3 /src/cpu/o3 | |
parent | 6e95bcd333784e1292293980cb2c2fba9f2ac467 (diff) | |
download | gem5-e6c04b1584998ed2ea532da4070b356c75906f63.tar.xz |
Change ThreadState constructor ordering to match the rest of the ThreadStates.
--HG--
extra : convert_revision : 63d98aa8b6a694c285d95a2a57e1b3aaef4cee3b
Diffstat (limited to 'src/cpu/o3')
-rw-r--r-- | src/cpu/o3/thread_state.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/thread_state.hh b/src/cpu/o3/thread_state.hh index 19cbffb44..1c8105204 100644 --- a/src/cpu/o3/thread_state.hh +++ b/src/cpu/o3/thread_state.hh @@ -82,7 +82,7 @@ struct O3ThreadState : public ThreadState { #else O3ThreadState(O3CPU *_cpu, int _thread_num, Process *_process, int _asid, MemObject *mem) - : ThreadState(-1, _thread_num, mem, _process, _asid), + : ThreadState(-1, _thread_num, _process, _asid, mem), cpu(_cpu), inSyscall(0), trapPending(0) { } #endif |