Skip to content

Commit fe64b26

Browse files
committed
NFC Rename LoadBitcodeIntoNewDbgInforFormat to LoadBitcodeIntoNewDbgInfoFormat
(drop additional 'r' before Format)
1 parent d51f1c4 commit fe64b26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Bitcode/Reader/BitcodeReader.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static cl::opt<bool> ExpandConstantExprs(
104104
/// of debug intrinsics). UNSET is treated as FALSE, so the default action
105105
/// is to do nothing. Individual tools can override this to incrementally add
106106
/// support for the RemoveDIs format.
107-
cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInforFormat(
107+
cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInfoFormat(
108108
"load-bitcode-into-experimental-debuginfo-iterators", cl::Hidden,
109109
cl::desc("Load bitcode directly into the new debug info format (regardless "
110110
"of input format)"));
@@ -4300,11 +4300,11 @@ Error BitcodeReader::parseGlobalIndirectSymbolRecord(
43004300
Error BitcodeReader::parseModule(uint64_t ResumeBit,
43014301
bool ShouldLazyLoadMetadata,
43024302
ParserCallbacks Callbacks) {
4303-
// Load directly into RemoveDIs format if LoadBitcodeIntoNewDbgInforFormat
4303+
// Load directly into RemoveDIs format if LoadBitcodeIntoNewDbgInfoFormat
43044304
// has been set to true (default action: load into the old debug format).
43054305
TheModule->IsNewDbgInfoFormat =
43064306
UseNewDbgInfoFormat &&
4307-
LoadBitcodeIntoNewDbgInforFormat == cl::boolOrDefault::BOU_TRUE;
4307+
LoadBitcodeIntoNewDbgInfoFormat == cl::boolOrDefault::BOU_TRUE;
43084308

43094309
this->ValueTypeCallback = std::move(Callbacks.ValueType);
43104310
if (ResumeBit) {

0 commit comments

Comments
 (0)