Displaying 1 result from an estimated 1 matches for "rdecl".
Did you mean:
decl
2013 Nov 15
1
[LLVMdev] DebugInfo: LTO Metadata Size reduction by removing some cycles
...xtDescriptor(const Decl *Context) {
if (!Context)
- return TheCU;
+ return llvm::DIScope();
llvm::DenseMap<const Decl *, llvm::WeakVH>::iterator
I = RegionMap.find(Context);
@@ -155,7 +155,7 @@ llvm::DIScope CGDebugInfo::getContextDescriptor(const Decl *Context) {
if (!RDecl->isDependentType())
return getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
getOrCreateMainFile());
- return TheCU;
+ return llvm::DIScope();
}
/// getFunctionName - Get function name for the given FunctionDecl. If the
diff --git test...