CPU: Get rid of the unused ev5_trap function on the simple and checker CPUs.

This commit is contained in:
Gabe Black 2010-08-31 09:47:29 -07:00
parent 8f1f83d13d
commit c9d01c6557
2 changed files with 0 additions and 2 deletions

View file

@ -293,7 +293,6 @@ class CheckerCPU : public BaseCPU
#if FULL_SYSTEM
Fault hwrei() { return thread->hwrei(); }
void ev5_trap(Fault fault) { fault->invoke(tc); }
bool simPalCheck(int palFunc) { return thread->simPalCheck(palFunc); }
#else
// Assume that the normal CPU's call to syscall was successful.

View file

@ -387,7 +387,6 @@ class BaseSimpleCPU : public BaseCPU
#if FULL_SYSTEM
Fault hwrei() { return thread->hwrei(); }
void ev5_trap(Fault fault) { fault->invoke(tc); }
bool simPalCheck(int palFunc) { return thread->simPalCheck(palFunc); }
#else
void syscall(int64_t callnum) { thread->syscall(callnum); }