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 612720d commit 59acdf0Copy full SHA for 59acdf0
llvm/lib/CodeGen/MachineVerifier.cpp
@@ -168,14 +168,14 @@ namespace {
168
169
// Same for a full set.
170
bool addRequired(const RegSet &RS) {
171
- return llvm::any_of(RS,
172
- [this](unsigned Reg) { return addRequired(Reg); });
+ return llvm::any_of(
+ RS, [this](unsigned Reg) { return this->addRequired(Reg); });
173
}
174
175
// Same for a full map.
176
bool addRequired(const RegMap &RM) {
177
return llvm::any_of(
178
- RM, [this](const auto &P) { return addRequired(P.first); });
+ RM, [this](const auto &P) { return this->addRequired(P.first); });
179
180
181
// Live-out registers are either in regsLiveOut or vregsPassed.
0 commit comments