diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-04-06 15:21:52 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-04-06 15:21:52 -0400 |
commit | 832311a17094501a6883100ac9dba8c781211782 (patch) | |
tree | bf959193c5a777d1ca49fee5be04dcf3b611391c /cpu/cpu_exec_context.hh | |
parent | bb4c2fba259d80e64edace509dc16f9a2ff2d2a6 (diff) | |
download | gem5-832311a17094501a6883100ac9dba8c781211782.tar.xz |
Fixed for full system.
--HG--
extra : convert_revision : 28c9cd55d887c9de7156c8cf76b7b91117f749d5
Diffstat (limited to 'cpu/cpu_exec_context.hh')
-rw-r--r-- | cpu/cpu_exec_context.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/cpu_exec_context.hh b/cpu/cpu_exec_context.hh index feaf29d12..c74feec68 100644 --- a/cpu/cpu_exec_context.hh +++ b/cpu/cpu_exec_context.hh @@ -497,7 +497,7 @@ class CPUExecContext int readIntrFlag() { return regs.intrflag; } void setIntrFlag(int val) { regs.intrflag = val; } Fault hwrei(); - bool inPalMode() { return AlphaISA::PcPAL(regs.pc); } + bool inPalMode() { return AlphaISA::PcPAL(regs.readPC()); } bool simPalCheck(int palFunc); #endif |