summaryrefslogtreecommitdiff
path: root/cpu/exec_context.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-03-01 01:23:10 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-03-01 01:23:10 -0500
commite08cf8fee0a2732aab1d4c6d0ba152282aad9714 (patch)
tree8b6fde3b50637a64ea5fd20de12e837bd1b61bb8 /cpu/exec_context.cc
parentd6c06571169603a37321af07b4d012f05806ad26 (diff)
downloadgem5-e08cf8fee0a2732aab1d4c6d0ba152282aad9714.tar.xz
Changed the name of the fault's invocation method from ev5_trap to invoke.
--HG-- extra : convert_revision : b7ab14ac644f6a38c69aaa5372b3002b21f34af0
Diffstat (limited to 'cpu/exec_context.cc')
-rw-r--r--cpu/exec_context.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/exec_context.cc b/cpu/exec_context.cc
index 7e8b81e18..0e787a547 100644
--- a/cpu/exec_context.cc
+++ b/cpu/exec_context.cc
@@ -227,7 +227,7 @@ ExecContext::trap(Fault fault)
/** @todo: Going to hack it for now. Do a true fixup later. */
#if FULL_SYSTEM
- fault->ev5_trap(this);
+ fault->invoke(this);
#else
fatal("fault (%d) detected @ PC 0x%08p", fault, readPC());
#endif