arch: TheISA shouldn't really ever be used in the arch directory.

We should always refer to the specific ISA in that arch directory.
This is especially necessary if we're ever going to make it to the
point where we actually have heterogeneous systems.
This commit is contained in:
Nathan Binkert
2008-09-27 21:03:46 -07:00
parent 0b30c345f1
commit 8ea5176b7f
21 changed files with 39 additions and 39 deletions

View File

@@ -159,7 +159,7 @@ namespace AlphaISA
}
SymbolTable *symtab = tc->getSystemPtr()->kernelSymtab;
Addr ksp = tc->readIntReg(TheISA::StackPointerReg);
Addr ksp = tc->readIntReg(AlphaISA::StackPointerReg);
Addr bottom = ksp & ~0x3fff;
Addr addr;