Add rudimentary support for member pointers to CGDebugInfo.

llvm-svn: 90711
This commit is contained in:
Anders Carlsson
2009-12-06 18:00:51 +00:00
parent 3c7b86f4ee
commit 3efc6e6f46
5 changed files with 179 additions and 132 deletions

View File

@@ -56,7 +56,7 @@ CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO,
Runtime = CreateMacObjCRuntime(*this);
// If debug info generation is enabled, create the CGDebugInfo object.
DebugInfo = CodeGenOpts.DebugInfo ? new CGDebugInfo(this) : 0;
DebugInfo = CodeGenOpts.DebugInfo ? new CGDebugInfo(*this) : 0;
}
CodeGenModule::~CodeGenModule() {