diff options
Diffstat (limited to 'src/cpu/checker/cpu.hh')
-rw-r--r-- | src/cpu/checker/cpu.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/checker/cpu.hh b/src/cpu/checker/cpu.hh index f79aa0864..101a16be6 100644 --- a/src/cpu/checker/cpu.hh +++ b/src/cpu/checker/cpu.hh @@ -531,7 +531,7 @@ class CheckerCPU : public BaseCPU, public ExecContext dumpAndExit(); } - bool checkFlags(Request *unverified_req, Addr vAddr, + bool checkFlags(RequestPtr unverified_req, Addr vAddr, Addr pAddr, int flags); void dumpAndExit(); @@ -540,7 +540,7 @@ class CheckerCPU : public BaseCPU, public ExecContext SimpleThread *threadBase() { return thread; } InstResult unverifiedResult; - Request *unverifiedReq; + RequestPtr unverifiedReq; uint8_t *unverifiedMemData; bool changedPC; |