[llvm-exegesis][NFC] Fix rL374146.
authorClement Courbet <courbet@google.com>
Wed, 9 Oct 2019 09:03:42 +0000 (09:03 +0000)
committerClement Courbet <courbet@google.com>
Wed, 9 Oct 2019 09:03:42 +0000 (09:03 +0000)
Remove extra semicolon: Target.cpp:187:2: warning: extra ‘;’ [-Wpedantic]

llvm-svn: 374147

llvm/tools/llvm-exegesis/lib/X86/Target.cpp

index 681bf4c..b8c6bae 100644 (file)
@@ -184,7 +184,7 @@ static void setMemOp(InstructionTemplate &IT, int OpIdx,
   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.