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(
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(
43004300Error 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) {
You can’t perform that action at this time.
0 commit comments