[llvm] r374147 - [llvm-exegesis][NFC] Fix rL374146.
Clement Courbet via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 9 02:03:43 PDT 2019
Author: courbet
Date: Wed Oct 9 02:03:42 2019
New Revision: 374147
URL: http://llvm.org/viewvc/llvm-project?rev=374147&view=rev
Log:
[llvm-exegesis][NFC] Fix rL374146.
Remove extra semicolon: Target.cpp:187:2: warning: extra ‘;’ [-Wpedantic]
Modified:
llvm/trunk/tools/llvm-exegesis/lib/X86/Target.cpp
Modified: llvm/trunk/tools/llvm-exegesis/lib/X86/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-exegesis/lib/X86/Target.cpp?rev=374147&r1=374146&r2=374147&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-exegesis/lib/X86/Target.cpp (original)
+++ llvm/trunk/tools/llvm-exegesis/lib/X86/Target.cpp Wed Oct 9 02:03:42 2019
@@ -184,7 +184,7 @@ static void setMemOp(InstructionTemplate
const auto Op = IT.Instr.Operands[OpIdx];
assert(Op.isExplicit() && "invalid memory pattern");
IT.getValueFor(Op) = OpVal;
-};
+}
// Common (latency, uops) code for LEA templates. `GetDestReg` takes the
// addressing base and index registers and returns the LEA destination register.
More information about the llvm-commits
mailing list