diff options
author | David Blaikie <dblaikie@gmail.com> | 2016-08-24 18:29:58 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2016-08-24 18:29:58 +0000 |
commit | a45c31a5b40ded42ad2cccc20f927f4e1ce7c125 (patch) | |
tree | 7d488fe33104c7a6cee05b111ce8c01599c0a8ad /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | a01f29532289f5fbebcc4f9bc5399fec0c715807 (diff) | |
download | bcm5719-llvm-a45c31a5b40ded42ad2cccc20f927f4e1ce7c125.tar.gz bcm5719-llvm-a45c31a5b40ded42ad2cccc20f927f4e1ce7c125.zip |
DebugInfo: Add flag to CU to disable emission of inline debug info into the skeleton CU
In cases where .dwo/.dwp files are guaranteed to be available, skipping
the extra online (in the .o file) inline info can save a substantial
amount of space - see the original r221306 for more details there.
llvm-svn: 279651
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index d515e1a31f7..2f250d853e7 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -454,7 +454,8 @@ void CGDebugInfo::CreateCompileUnit() { TheCU = DBuilder.createCompileUnit( LangTag, remapDIPath(MainFileName), remapDIPath(getCurrentDirname()), Producer, LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers, - CGM.getCodeGenOpts().SplitDwarfFile, EmissionKind, 0 /* DWOid */); + CGM.getCodeGenOpts().SplitDwarfFile, EmissionKind, 0 /* DWOid */, + CGM.getCodeGenOpts().SplitDwarfInlining); } llvm::DIType *CGDebugInfo::CreateType(const BuiltinType *BT) { |