Displaying 1 result from an estimated 1 matches for "dibt".
Did you mean:
dib
2017 May 22
2
DebugInfo, Metadata usage
...es())
{
if(DIGlobalVariable *DIGV = DIGVExpr->getVariable())
{
llvm::outs() << "DIGV DisplayName : " <<
DIGV->getDisplayName() << "\n";
}
}
for(DIType *DIT : DIFinder.types())
{
if(DIBasicType* DIBT = dyn_cast<DIBasicType>(DIT))
{
llvm::outs() << "DIBasicType in Module : " << DIT->getName()
<< "\n";
StringRef Encoding =
dwarf::AttributeEncodingString(DIBT->getEncoding());
if(!Encoding.empty())...