remove unnecessary debug messages I added
--HG-- extra : convert_revision : 5c23218fd1b899fa7fe42701f7cb2f6033f7a583
This commit is contained in:
parent
2692590049
commit
bfdd2f379b
2 changed files with 0 additions and 4 deletions
|
@ -71,7 +71,6 @@ ObjectFile::loadSection(Section *sec, Port *memPort, Addr addrMask)
|
|||
{
|
||||
if (sec->size != 0) {
|
||||
Addr addr = sec->baseAddr & addrMask;
|
||||
warn("attempting load @ section addr: %#x", addr);
|
||||
if (sec->fileImage) {
|
||||
memPort->writeBlob(addr, sec->fileImage, sec->size);
|
||||
}
|
||||
|
|
|
@ -304,9 +304,6 @@ PhysicalMemory::doAtomicAccess(PacketPtr pkt)
|
|||
void
|
||||
PhysicalMemory::doFunctionalAccess(PacketPtr pkt)
|
||||
{
|
||||
warn("addr %#x >= %#x AND %#x <= %#x",
|
||||
pkt->getAddr(), start(), pkt->getAddr() + pkt->getSize(), start() + size());
|
||||
|
||||
assert(pkt->getAddr() >= start() &&
|
||||
pkt->getAddr() + pkt->getSize() <= start() + size());
|
||||
|
||||
|
|
Loading…
Reference in a new issue