diff options
author | David Blaikie <dblaikie@gmail.com> | 2016-08-24 18:29:49 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2016-08-24 18:29:49 +0000 |
commit | a01f29532289f5fbebcc4f9bc5399fec0c715807 (patch) | |
tree | 6a2b6698b1d341f94b4e81a1e39679eaa1df790e /llvm/lib/Bitcode/Writer | |
parent | abd2be1e2e529c096dea280464ac1972977a7ecd (diff) | |
download | bcm5719-llvm-a01f29532289f5fbebcc4f9bc5399fec0c715807.tar.gz bcm5719-llvm-a01f29532289f5fbebcc4f9bc5399fec0c715807.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: 279650
Diffstat (limited to 'llvm/lib/Bitcode/Writer')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 428bb11a33d..391adeb47f0 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -1564,6 +1564,7 @@ void ModuleBitcodeWriter::writeDICompileUnit(const DICompileUnit *N, Record.push_back(VE.getMetadataOrNullID(N->getImportedEntities().get())); Record.push_back(N->getDWOId()); Record.push_back(VE.getMetadataOrNullID(N->getMacros().get())); + Record.push_back(N->getSplitDebugInlining()); Stream.EmitRecord(bitc::METADATA_COMPILE_UNIT, Record, Abbrev); Record.clear(); |