Quick fix for PR2950, infinite loop generating debug info for
recursive types.
- Style will be clean up in further patches.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58490 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h
index 28834ee..9e5ad17 100644
--- a/lib/CodeGen/CGDebugInfo.h
+++ b/lib/CodeGen/CGDebugInfo.h
@@ -88,12 +88,14 @@
llvm::CompileUnitDesc *unit);
llvm::TypeDesc *getOrCreateFunctionType(QualType type,
llvm::CompileUnitDesc *unit);
- llvm::TypeDesc *getOrCreateRecordType(QualType type,
- llvm::CompileUnitDesc *unit);
+ void getOrCreateRecordType(QualType type,
+ llvm::CompileUnitDesc *unit,
+ llvm::TypeDesc *&Slot);
llvm::TypeDesc *getOrCreateEnumType(QualType type,
llvm::CompileUnitDesc *unit);
- llvm::TypeDesc *getOrCreateTaggedType(QualType type,
- llvm::CompileUnitDesc *unit);
+ void getOrCreateTaggedType(QualType type,
+ llvm::CompileUnitDesc *unit,
+ llvm::TypeDesc *&Slot);
llvm::TypeDesc *getOrCreateArrayType(QualType type,
llvm::CompileUnitDesc *unit);