diff options
author | Richard Trembecký <richardt@centrum.sk> | 2016-04-28 18:27:24 +0200 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-05-24 14:08:27 +0100 |
commit | 870f2d6aac35457e7524078a4b4a8b011f84c45c (patch) | |
tree | 8a71e5308e1e5f0fbae089dc8fef993169097fbf /lib/Module/InstructionInfoTable.cpp | |
parent | 9388395c21e512796b39baca81324ffb7b70de60 (diff) | |
download | klee-870f2d6aac35457e7524078a4b4a8b011f84c45c.tar.gz |
llvm: make KLEE compile against LLVM 3.7
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Diffstat (limited to 'lib/Module/InstructionInfoTable.cpp')
-rw-r--r-- | lib/Module/InstructionInfoTable.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Module/InstructionInfoTable.cpp b/lib/Module/InstructionInfoTable.cpp index e2f05205..3d9bf5ae 100644 --- a/lib/Module/InstructionInfoTable.cpp +++ b/lib/Module/InstructionInfoTable.cpp @@ -94,9 +94,15 @@ bool InstructionInfoTable::getInstructionDebugInfo(const llvm::Instruction *I, const std::string *&File, unsigned &Line) { if (MDNode *N = I->getMetadata("dbg")) { +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 7) + DILocation *Loc = cast<DILocation>(N); + File = internString(getDSPIPath(*Loc)); + Line = Loc->getLine(); +#else DILocation Loc(N); File = internString(getDSPIPath(Loc)); Line = Loc.getLineNumber(); +#endif return true; } |