File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ static cl::opt<bool> ExpandConstantExprs(
104
104
// / of debug intrinsics). UNSET is treated as FALSE, so the default action
105
105
// / is to do nothing. Individual tools can override this to incrementally add
106
106
// / support for the RemoveDIs format.
107
- cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInforFormat (
107
+ cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInfoFormat (
108
108
" load-bitcode-into-experimental-debuginfo-iterators" , cl::Hidden,
109
109
cl::desc (" Load bitcode directly into the new debug info format (regardless "
110
110
" of input format)" ));
@@ -4300,11 +4300,11 @@ Error BitcodeReader::parseGlobalIndirectSymbolRecord(
4300
4300
Error BitcodeReader::parseModule (uint64_t ResumeBit,
4301
4301
bool ShouldLazyLoadMetadata,
4302
4302
ParserCallbacks Callbacks) {
4303
- // Load directly into RemoveDIs format if LoadBitcodeIntoNewDbgInforFormat
4303
+ // Load directly into RemoveDIs format if LoadBitcodeIntoNewDbgInfoFormat
4304
4304
// has been set to true (default action: load into the old debug format).
4305
4305
TheModule->IsNewDbgInfoFormat =
4306
4306
UseNewDbgInfoFormat &&
4307
- LoadBitcodeIntoNewDbgInforFormat == cl::boolOrDefault::BOU_TRUE;
4307
+ LoadBitcodeIntoNewDbgInfoFormat == cl::boolOrDefault::BOU_TRUE;
4308
4308
4309
4309
this ->ValueTypeCallback = std::move (Callbacks.ValueType );
4310
4310
if (ResumeBit) {
You can’t perform that action at this time.
0 commit comments