Alpha: Fixes to get alpha to compile again.
--HG-- extra : convert_revision : 9541cf6dae1fb1a1c6025898692b2e04fcf55c6d
This commit is contained in:
parent
8253ff2ba9
commit
703d10705c
1 changed files with 5 additions and 3 deletions
|
@ -92,10 +92,12 @@ namespace AlphaISA {
|
||||||
// ITB/DTB table entry
|
// ITB/DTB table entry
|
||||||
struct TlbEntry
|
struct TlbEntry
|
||||||
{
|
{
|
||||||
|
Addr pageStart;
|
||||||
//Construct an entry that maps to physical address addr.
|
//Construct an entry that maps to physical address addr.
|
||||||
TlbEntry(Addr addr)
|
TlbEntry(Addr addr) : pageStart(addr)
|
||||||
{
|
{}
|
||||||
}
|
TlbEntry()
|
||||||
|
{}
|
||||||
|
|
||||||
Addr tag; // virtual page number tag
|
Addr tag; // virtual page number tag
|
||||||
Addr ppn; // physical page number
|
Addr ppn; // physical page number
|
||||||
|
|
Loading…
Reference in a new issue