diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/alpha_memory.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/alpha_memory.cc b/arch/alpha/alpha_memory.cc index a40ad7a5c..5d9a5fc6f 100644 --- a/arch/alpha/alpha_memory.cc +++ b/arch/alpha/alpha_memory.cc @@ -66,7 +66,7 @@ AlphaTLB::~AlphaTLB() AlphaISA::PTE * AlphaTLB::lookup(Addr vpn, uint8_t asn) const { - DPRINTF(TLB, "lookup %#x\n", vpn); + DPRINTF(TLB, "lookup %#x, asn %#x\n", vpn, (int)asn); PageTable::const_iterator i = lookupTable.find(vpn); if (i == lookupTable.end()) |