diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-05-21 20:37:26 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-05-21 20:37:26 +0000 |
commit | be81cf570e9dcd5c89ee5029b6539b6e8203841e (patch) | |
tree | 8705afa0b7bc896db31b0d0e6e70b1ad0b263760 /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 3b3c9c3e44e1792fcf8246acd0e13dde45f6204b (diff) | |
download | bcm5719-llvm-be81cf570e9dcd5c89ee5029b6539b6e8203841e.tar.gz bcm5719-llvm-be81cf570e9dcd5c89ee5029b6539b6e8203841e.zip |
Debug info: Adapt to new DIBuilder interface.
llvm-svn: 237948
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 3a9b4c7ace4..be684d46cb7 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -379,6 +379,7 @@ void CGDebugInfo::CreateCompileUnit() { DebugKind <= CodeGenOptions::DebugLineTablesOnly ? llvm::DIBuilder::LineTablesOnly : llvm::DIBuilder::FullDebug, + 0 /* DWOid */, DebugKind != CodeGenOptions::LocTrackingOnly); } |