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 | 0cf155174e6cf5a4a2cb80a17c5060196a54bbee (patch) | |
tree | 183e90e93e6b2b763212a352a44c74be1f6f78cc /clang/lib/CodeGen/CGDebugInfo.h | |
parent | 4bf82141e7aefe7a561a541f325ced8d3e081628 (diff) | |
download | bcm5719-llvm-0cf155174e6cf5a4a2cb80a17c5060196a54bbee.tar.gz bcm5719-llvm-0cf155174e6cf5a4a2cb80a17c5060196a54bbee.zip |
Fix an infinite loop arising when trying to generate debug information
for a ObjC class with an ivar of weak self type.
llvm-svn: 82745
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h index b796b1e97ce..dc256003f61 100644 --- a/clang/lib/CodeGen/CGDebugInfo.h +++ b/clang/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); |