137a138
> #include "sim/full_system.hh"
159,170c160,171
< #if FULL_SYSTEM
< if (va)
< return true;
< return false;
< #else
< TlbEntry entry;
< // Check to make sure the first byte is mapped into the processes address
< // space.
< if (context->getProcessPtr()->pTable->lookup(va, entry))
< return true;
< return false;
< #endif
---
> if (FullSystem) {
> if (va)
> return true;
> return false;
> } else {
> TlbEntry entry;
> // Check to make sure the first byte is mapped into the processes
> // address space.
> if (context->getProcessPtr()->pTable->lookup(va, entry))
> return true;
> return false;
> }