From: Clement Courbet Date: Wed, 9 Oct 2019 09:03:42 +0000 (+0000) Subject: [llvm-exegesis][NFC] Fix rL374146. X-Git-Tag: llvmorg-11-init~7121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8d482c07be46b2ed0c280dfda1bb86cab5de386;p=platform%2Fupstream%2Fllvm.git [llvm-exegesis][NFC] Fix rL374146. Remove extra semicolon: Target.cpp:187:2: warning: extra ‘;’ [-Wpedantic] llvm-svn: 374147 --- diff --git a/llvm/tools/llvm-exegesis/lib/X86/Target.cpp b/llvm/tools/llvm-exegesis/lib/X86/Target.cpp index 681bf4c..b8c6bae 100644 --- a/llvm/tools/llvm-exegesis/lib/X86/Target.cpp +++ b/llvm/tools/llvm-exegesis/lib/X86/Target.cpp @@ -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.