import-trace: cleanup

Change-Id: I9f658c1bb9881fd1ef70f1744b6a2e2c36ad7142
This commit is contained in:
Horst Schirmeier
2018-07-24 16:13:52 +02:00
parent eef19b80a0
commit 45c7906d41
3 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@ bool AdvancedMemoryImporter::handle_ip_event(fail::simtime_t curtime, instructio
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
return false;
}
binary = &(*BinaryOrErr.get().getBinary());
binary = BinaryOrErr.get().getBinary();
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
#ifndef __puma

View File

@ -32,7 +32,7 @@ bool InstructionImporter::handle_ip_event(fail::simtime_t curtime, instruction_c
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
return false;
}
binary = &(*BinaryOrErr.get().getBinary());
binary = BinaryOrErr.get().getBinary();
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
#ifndef __puma

View File

@ -74,7 +74,7 @@ bool RandomJumpImporter::handle_ip_event(fail::simtime_t curtime, instruction_co
LOG << m_elf->getFilename() << "': " << Buf << ".\n";
return false;
}
binary = &(*BinaryOrErr.get().getBinary());
binary = BinaryOrErr.get().getBinary();
// necessary due to an AspectC++ bug triggered by LLVM 3.3's dyn_cast()
#ifndef __puma