diff options
author | Anders Carlsson <andersca@mac.com> | 2010-01-26 05:19:50 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-01-26 05:19:50 +0000 |
commit | 4433f1cf8a2704395e509d020d8f79da4e273458 (patch) | |
tree | ab170c8038b587bf096d624e25585f61fe1621c2 /lib/CodeGen/CGDebugInfo.h | |
parent | d6f9a0d14b47e7ea9739623544d967682f41b86d (diff) |
Fix the test I broke, and also fix a crash when declaring a virtual destructor. Add debug info support for pure virtual member functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94519 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 e785bef101..405f02ba7b 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -88,7 +88,7 @@ class CGDebugInfo { const Type *Ty, QualType PointeeTy, llvm::DICompileUnit U); - llvm::DISubprogram CreateCXXMemberFunction(GlobalDecl GD, + llvm::DISubprogram CreateCXXMemberFunction(const CXXMethodDecl *Method, llvm::DICompileUnit Unit, llvm::DICompositeType &RecordTy); |