mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 16:16:45 +00:00
[llvm-exegesis] Fix unused lambda capture.
llvm-svn: 344029
This commit is contained in:
parent
c27f3c0720
commit
aada53dc8b
@ -171,7 +171,7 @@ bool Instruction::hasAliasingImplicitRegisters() const {
|
|||||||
|
|
||||||
bool Instruction::hasTiedRegisters() const {
|
bool Instruction::hasTiedRegisters() const {
|
||||||
return llvm::any_of(
|
return llvm::any_of(
|
||||||
Variables, [this](const Variable &Var) { return Var.hasTiedOperands(); });
|
Variables, [](const Variable &Var) { return Var.hasTiedOperands(); });
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Instruction::hasAliasingRegisters() const {
|
bool Instruction::hasAliasingRegisters() const {
|
||||||
|
Loading…
Reference in New Issue
Block a user