Displaying 1 result from an estimated 1 matches for "r244238".
2015 Aug 06
2
[LLVMdev] DebugInfo from LLVM Instruction
Hi all,
I used to extract the debug information from an LLVM Instruction in the following way:
if (MDNode *N = I->getMetadata("dbg")) { // Here I is an LLVM instruction
DILocation Loc(N); // DILocation is in DebugInfo.h
unsigned Line = Loc.getLineNumber();
StringRef File = Loc.getFilename();
StringRef Dir = Loc.getDirectory();
}
As specified also at