File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed
unittests/DebugInfo/LogicalView Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -357,10 +357,8 @@ class AMDGPUWaitSGPRHazards {
357
357
358
358
// Only consider implicit VCC specified by instruction descriptor.
359
359
const bool HasImplicitVCC =
360
- llvm::any_of (MI->getDesc ().implicit_uses (),
361
- [](MCPhysReg Reg) { return isVCC (Reg); }) ||
362
- llvm::any_of (MI->getDesc ().implicit_defs (),
363
- [](MCPhysReg Reg) { return isVCC (Reg); });
360
+ llvm::any_of (MI->getDesc ().implicit_uses (), isVCC) ||
361
+ llvm::any_of (MI->getDesc ().implicit_defs (), isVCC);
364
362
365
363
if (IsSetPC) {
366
364
// All SGPR writes before a call/return must be flushed as the
Original file line number Diff line number Diff line change @@ -169,13 +169,10 @@ void checkUnspecifiedParameters(LVReader *Reader) {
169
169
// `int foo_printf(const char *, ...)`, where the '...' is represented by a
170
170
// DW_TAG_unspecified_parameters, i.e. we expect to find at least one child
171
171
// for which getIsUnspecified() returns true.
172
- EXPECT_EQ (std::any_of (
173
- Elements->begin (), Elements->end (),
174
- [](const LVElement *elt) {
175
- return elt->getIsSymbol () &&
176
- static_cast <const LVSymbol *>(elt)->getIsUnspecified ();
177
- }),
178
- true );
172
+ EXPECT_TRUE (llvm::any_of (*Elements, [](const LVElement *elt) {
173
+ return elt->getIsSymbol () &&
174
+ static_cast <const LVSymbol *>(elt)->getIsUnspecified ();
175
+ }));
179
176
}
180
177
181
178
// Check the basic properties on parsed DW_TAG_module.
You can’t perform that action at this time.
0 commit comments