forked from OSchip/llvm-project
[llvm-exegesis] Fix unused lambda capture.
llvm-svn: 344029
This commit is contained in:
parent
09c2839c02
commit
cf6d5fab32
|
@ -171,7 +171,7 @@ bool Instruction::hasAliasingImplicitRegisters() const {
|
|||
|
||||
bool Instruction::hasTiedRegisters() const {
|
||||
return llvm::any_of(
|
||||
Variables, [this](const Variable &Var) { return Var.hasTiedOperands(); });
|
||||
Variables, [](const Variable &Var) { return Var.hasTiedOperands(); });
|
||||
}
|
||||
|
||||
bool Instruction::hasAliasingRegisters() const {
|
||||
|
|
Loading…
Reference in New Issue