Skip to content

Commit e419084

Browse files
committed
[RemoveDIs] Enable direct-to-bitcode writing by default
Follow on from #83251. This patch simply enables the behaviour by default in order to provide an easily revertible capstone.
1 parent 9214e51 commit e419084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/IR/BasicBlock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cl::opt<bool>
3939
bool WriteNewDbgInfoFormatToBitcode /*set default value in cl::init() below*/;
4040
cl::opt<bool, true> WriteNewDbgInfoFormatToBitcode2(
4141
"write-experimental-debuginfo-iterators-to-bitcode", cl::Hidden,
42-
cl::location(WriteNewDbgInfoFormatToBitcode), cl::init(false));
42+
cl::location(WriteNewDbgInfoFormatToBitcode), cl::init(true));
4343

4444
DPMarker *BasicBlock::createMarker(Instruction *I) {
4545
assert(IsNewDbgInfoFormat &&

0 commit comments

Comments
 (0)