diff options
| author | Guillaume Chatelet <gchatelet@google.com> | 2018-10-09 09:33:29 +0000 |
|---|---|---|
| committer | Guillaume Chatelet <gchatelet@google.com> | 2018-10-09 09:33:29 +0000 |
| commit | cf6d5fab324f7742d8192efee967e7c01a170426 (patch) | |
| tree | b66deb75be83416030d2628b19c11c3009eb5ab0 /llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp | |
| parent | 09c2839c02a0eabf8851d81a44eba644ec683791 (diff) | |
| download | bcm5719-llvm-cf6d5fab324f7742d8192efee967e7c01a170426.tar.gz bcm5719-llvm-cf6d5fab324f7742d8192efee967e7c01a170426.zip | |
[llvm-exegesis] Fix unused lambda capture.
llvm-svn: 344029
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp')
| -rw-r--r-- | llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp index f2007afc937..2661e42326a 100644 --- a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp +++ b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp @@ -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 { |

