diff options
author | John McCall <rjmccall@apple.com> | 2009-09-25 01:40:47 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-09-25 01:40:47 +0000 |
commit | a180529e3d5d08dff2e2154d6a33a6c09f6af959 (patch) | |
tree | 31fef1ca461dd4b328a657ff21c4914b183dcddc /lib/CodeGen/CGDebugInfo.h | |
parent | fbbce49c116aa8c8c7c0707cb6048b55f70461a9 (diff) |
Fix an infinite loop arising when trying to generate debug information
for a ObjC class with an ivar of weak self type.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82745 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h index b796b1e97c..dc256003f6 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -59,7 +59,7 @@ class CGDebugInfo { /// Helper functions for getOrCreateType. llvm::DIType CreateType(const BuiltinType *Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const ComplexType *Ty, llvm::DICompileUnit U); - llvm::DIType CreateCVRType(QualType Ty, llvm::DICompileUnit U); + llvm::DIType CreateQualifiedType(QualType Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const TypedefType *Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const ObjCObjectPointerType *Ty, llvm::DICompileUnit Unit); |