diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-22 01:58:15 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-22 01:58:15 +0000 |
commit | 36b8ee6325b709dd301681fb281b6cf102a5e51a (patch) | |
tree | 4492dfe5a51cd9b5daa42e3b969eca787133827c /lib/CodeGen/CGDebugInfo.h | |
parent | 575d2a30f288ddab2f24a77dfcc71f6f7f808394 (diff) |
Debug info generation for rvalue references
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h index 1d72cc18ea..4b24d79c81 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -91,6 +91,7 @@ class CGDebugInfo { llvm::DIType CreateType(const VectorType *Ty, llvm::DIFile F); llvm::DIType CreateType(const ArrayType *Ty, llvm::DIFile F); llvm::DIType CreateType(const LValueReferenceType *Ty, llvm::DIFile F); + llvm::DIType CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit); llvm::DIType CreateType(const MemberPointerType *Ty, llvm::DIFile F); llvm::DIType CreateEnumType(const EnumDecl *ED); llvm::DIType getOrCreateMethodType(const CXXMethodDecl *Method, |