aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/BasicBlock.cpp
diff options
context:
space:
mode:
authorStephen Tozer <stephen.tozer@sony.com>2024-05-01 16:56:34 +0100
committerStephen Tozer <stephen.tozer@sony.com>2024-05-01 16:56:34 +0100
commit00821fed09969305b0003d3313c44d1e761a7131 (patch)
tree8d28038f25f4898cbc40a224b27f423d76e610b3 /llvm/lib/IR/BasicBlock.cpp
parent2f01fd99eb8c8ab3db9aba72c4f00e31e9e60a05 (diff)
downloadllvm-00821fed09969305b0003d3313c44d1e761a7131.zip
llvm-00821fed09969305b0003d3313c44d1e761a7131.tar.gz
llvm-00821fed09969305b0003d3313c44d1e761a7131.tar.bz2
Revert "[RemoveDIs] Load into new debug info format by default in LLVM (#89799)"
A unit test was broken by the above commit: https://lab.llvm.org/buildbot/#/builders/139/builds/64627 This reverts commit 2f01fd99eb8c8ab3db9aba72c4f00e31e9e60a05.
Diffstat (limited to 'llvm/lib/IR/BasicBlock.cpp')
-rw-r--r--llvm/lib/IR/BasicBlock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/BasicBlock.cpp b/llvm/lib/IR/BasicBlock.cpp
index aea9425..29f2cbf 100644
--- a/llvm/lib/IR/BasicBlock.cpp
+++ b/llvm/lib/IR/BasicBlock.cpp
@@ -181,7 +181,7 @@ template class llvm::SymbolTableListTraits<Instruction,
BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
BasicBlock *InsertBefore)
: Value(Type::getLabelTy(C), Value::BasicBlockVal),
- IsNewDbgInfoFormat(UseNewDbgInfoFormat), Parent(nullptr) {
+ IsNewDbgInfoFormat(false), Parent(nullptr) {
if (NewParent)
insertInto(NewParent, InsertBefore);