summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-08-15 23:01:55 +0000
committerDevang Patel <dpatel@apple.com>2011-08-15 23:01:55 +0000
commite24d3247625f52365b57daf93d040dc25daa0047 (patch)
treebac6b0affff7c51765a96582b96df51e3acbad8d
parent2b8acaf4f3becabad0a5881bbb28b2ff0b5a33e7 (diff)
downloadbcm5719-llvm-e24d3247625f52365b57daf93d040dc25daa0047.tar.gz
bcm5719-llvm-e24d3247625f52365b57daf93d040dc25daa0047.zip
Use new DIBuilder::finalize() at the end to wrap up debug info encoding for a translation unit.
llvm-svn: 137674
-rw-r--r--clang/lib/CodeGen/CGDebugInfo.h1
-rw-r--r--clang/lib/CodeGen/CodeGenModule.cpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h
index 09e4628f476..fdc3baf2f37 100644
--- a/clang/lib/CodeGen/CGDebugInfo.h
+++ b/clang/lib/CodeGen/CGDebugInfo.h
@@ -152,6 +152,7 @@ class CGDebugInfo {
public:
CGDebugInfo(CodeGenModule &CGM);
~CGDebugInfo();
+ void finalize() { DBuilder.finalize(); }
/// setLocation - Update the current source location. If \arg loc is
/// invalid it is ignored.
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index d5d34634dbc..d442b097ab8 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -125,6 +125,8 @@ void CodeGenModule::createObjCRuntime() {
}
void CodeGenModule::Release() {
+ if (DebugInfo)
+ DebugInfo->finalize();
EmitDeferred();
EmitCXXGlobalInitFunc();
EmitCXXGlobalDtorFunc();
OpenPOWER on IntegriCloud