diff options
| -rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 1 | ||||
| -rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 | 
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();  | 

