diff options
author | Anders Carlsson <andersca@mac.com> | 2009-11-06 19:19:55 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-11-06 19:19:55 +0000 |
commit | 443f6773029a45a705ae2873fb620904289513dd (patch) | |
tree | 43b5ab939188853c3106f062957f6565e7173e7c /clang/lib/CodeGen/CGDebugInfo.h | |
parent | c2d71b531c63eeb9679af79f5437bbf150cb99ec (diff) | |
download | bcm5719-llvm-443f6773029a45a705ae2873fb620904289513dd.tar.gz bcm5719-llvm-443f6773029a45a705ae2873fb620904289513dd.zip |
Simplify the debug info code, handle lvalue references and template specializations.
llvm-svn: 86277
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h index 2e44e09d259..ffb1af40567 100644 --- a/clang/lib/CodeGen/CGDebugInfo.h +++ b/clang/lib/CodeGen/CGDebugInfo.h @@ -73,7 +73,11 @@ class CGDebugInfo { llvm::DIType CreateType(const ObjCInterfaceType *Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const EnumType *Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const ArrayType *Ty, llvm::DICompileUnit U); + llvm::DIType CreateType(const LValueReferenceType *Ty, llvm::DICompileUnit U); + llvm::DIType CreatePointerLikeType(unsigned Tag, + const Type *Ty, QualType PointeeTy, + llvm::DICompileUnit U); public: CGDebugInfo(CodeGenModule *m); ~CGDebugInfo(); |