summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Writer
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2019-12-30 22:32:08 -0800
committerDavid Blaikie <dblaikie@gmail.com>2019-12-30 22:33:35 -0800
commitb350c666ab65b7585bc58301b03d2b46dc6b0504 (patch)
tree9411abc263fc1f38bb043438ea859c1acfacd5bc /llvm/lib/Bitcode/Writer
parent5b1cbfa4232ee81e62a16534113aeb7401841f82 (diff)
downloadbcm5719-llvm-b350c666ab65b7585bc58301b03d2b46dc6b0504.tar.gz
bcm5719-llvm-b350c666ab65b7585bc58301b03d2b46dc6b0504.zip
Revert "DebugInfo: Fix rangesBaseAddress DICompileUnit bitcode serialization/deserialization"
Seeing some curious CFI failures internally - which makes little sense to me, as I don't think anyone is using this flag (even us, internally)... so sounds like a bug in my code somewhere (possibly a latent one that propagating this flag exposed, not sure). Reverting while I investigate. This reverts commit c51b45e32ef7f35c11891f60871aa9c2c04cd991.
Diffstat (limited to 'llvm/lib/Bitcode/Writer')
-rw-r--r--llvm/lib/Bitcode/Writer/BitcodeWriter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
index a564c30b842..dcff7c421fc 100644
--- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
+++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -1661,7 +1661,6 @@ void ModuleBitcodeWriter::writeDICompileUnit(const DICompileUnit *N,
Record.push_back(N->getSplitDebugInlining());
Record.push_back(N->getDebugInfoForProfiling());
Record.push_back((unsigned)N->getNameTableKind());
- Record.push_back(N->getRangesBaseAddress());
Stream.EmitRecord(bitc::METADATA_COMPILE_UNIT, Record, Abbrev);
Record.clear();
OpenPOWER on IntegriCloud