We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a6c981 commit e98b8cbCopy full SHA for e98b8cb
llvm/lib/CodeGen/MIRParser/MIRParser.cpp
@@ -529,7 +529,7 @@ void MIRParserImpl::setupDebugValueTracking(
529
unsigned MaxInstrNum = 0;
530
for (auto &MBB : MF)
531
for (auto &MI : MBB)
532
- MaxInstrNum = std::max((unsigned)MI.peekDebugInstrNum(), MaxInstrNum);
+ MaxInstrNum = std::max(MI.peekDebugInstrNum(), MaxInstrNum);
533
MF.setDebugInstrNumberingCount(MaxInstrNum);
534
535
// Load any substitutions.
0 commit comments