From: Gabe Black Date: Tue, 31 Aug 2010 16:47:29 +0000 (-0700) Subject: CPU: Get rid of the unused ev5_trap function on the simple and checker CPUs. X-Git-Tag: stable_2012_02_02~831 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9d01c6557cadc263d5d7f097bed7377d4e340d9;p=gem5.git CPU: Get rid of the unused ev5_trap function on the simple and checker CPUs. --- diff --git a/src/cpu/checker/cpu.hh b/src/cpu/checker/cpu.hh index 73b27161a..a2f44106d 100644 --- a/src/cpu/checker/cpu.hh +++ b/src/cpu/checker/cpu.hh @@ -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. diff --git a/src/cpu/simple/base.hh b/src/cpu/simple/base.hh index 24527f9eb..0aa0a295c 100644 --- a/src/cpu/simple/base.hh +++ b/src/cpu/simple/base.hh @@ -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); }