SPARC: Fixes to get SPARC to compile again.
--HG-- extra : convert_revision : dab20c49fec9c2d385ca59b9ab627c2d3dddfe76
This commit is contained in:
parent
7227ab5f22
commit
25ad253643
2 changed files with 5 additions and 3 deletions
|
@ -190,6 +190,11 @@ struct TlbRange {
|
|||
|
||||
|
||||
struct TlbEntry {
|
||||
Addr pageStart;
|
||||
TlbEntry()
|
||||
{}
|
||||
TlbEntry(Addr addr) : pageStart(addr)
|
||||
{}
|
||||
TlbRange range;
|
||||
PageTableEntry pte;
|
||||
bool used;
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
|
||||
#include <inttypes.h>
|
||||
#include "base/bigint.hh"
|
||||
#include "mem/page_table.hh"
|
||||
|
||||
namespace SparcISA
|
||||
{
|
||||
|
@ -61,8 +60,6 @@ namespace SparcISA
|
|||
typedef int RegContextVal;
|
||||
|
||||
typedef uint16_t RegIndex;
|
||||
|
||||
typedef ::PageTable<> PageTable;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue