diff options
author | Clement Courbet <courbet@google.com> | 2019-10-09 09:03:42 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2019-10-09 09:03:42 +0000 |
commit | f8d482c07be46b2ed0c280dfda1bb86cab5de386 (patch) | |
tree | 2f9f7071d27f6833c844d7a64ba2ef45b96393b0 | |
parent | c3a7fb7599316d57bc197fe566bf2bd3b65cb330 (diff) | |
download | bcm5719-llvm-f8d482c07be46b2ed0c280dfda1bb86cab5de386.tar.gz bcm5719-llvm-f8d482c07be46b2ed0c280dfda1bb86cab5de386.zip |
[llvm-exegesis][NFC] Fix rL374146.
Remove extra semicolon: Target.cpp:187:2: warning: extra ‘;’ [-Wpedantic]
llvm-svn: 374147
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/X86/Target.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/X86/Target.cpp b/llvm/tools/llvm-exegesis/lib/X86/Target.cpp index 681bf4cebf8..b8c6bae45f8 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. |