diff options
Diffstat (limited to 'cpu/exec_context.cc')
-rw-r--r-- | cpu/exec_context.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cpu/exec_context.cc b/cpu/exec_context.cc index 7dd9bf58d..e0ab1007f 100644 --- a/cpu/exec_context.cc +++ b/cpu/exec_context.cc @@ -253,15 +253,3 @@ ExecContext::regStats(const string &name) #endif } -void -ExecContext::trap(Fault fault) -{ - //TheISA::trap(fault); //One possible way to do it... - - /** @todo: Going to hack it for now. Do a true fixup later. */ -#if FULL_SYSTEM - fault->ev5_trap(this); -#else - fatal("fault (%d) detected @ PC 0x%08p", fault, readPC()); -#endif -} |