import-trace: cleanup
Change-Id: I9f658c1bb9881fd1ef70f1744b6a2e2c36ad7142
This commit is contained in:
@ -118,7 +118,7 @@ bool AdvancedMemoryImporter::handle_ip_event(fail::simtime_t curtime, instructio
|
|||||||
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
|
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
binary = &(*BinaryOrErr.get().getBinary());
|
binary = BinaryOrErr.get().getBinary();
|
||||||
|
|
||||||
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
|
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
|
||||||
#ifndef __puma
|
#ifndef __puma
|
||||||
|
|||||||
@ -32,7 +32,7 @@ bool InstructionImporter::handle_ip_event(fail::simtime_t curtime, instruction_c
|
|||||||
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
|
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
binary = &(*BinaryOrErr.get().getBinary());
|
binary = BinaryOrErr.get().getBinary();
|
||||||
|
|
||||||
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
|
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
|
||||||
#ifndef __puma
|
#ifndef __puma
|
||||||
|
|||||||
@ -74,7 +74,7 @@ bool RandomJumpImporter::handle_ip_event(fail::simtime_t curtime, instruction_co
|
|||||||
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
|
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
binary = &(*BinaryOrErr.get().getBinary());
|
binary = BinaryOrErr.get().getBinary();
|
||||||
|
|
||||||
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
|
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
|
||||||
#ifndef __puma
|
#ifndef __puma
|
||||||
|
|||||||
Reference in New Issue
Block a user