summaryrefslogtreecommitdiffstats
path: root/llvm/lib/XRay
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-09-06 15:15:28 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-09-06 15:15:28 +0000
commit6088e851773e82e612023a75f1a174e662a88254 (patch)
tree91b05c938275807089d4185e9fcf5f0c2236f382 /llvm/lib/XRay
parent7f270fcf0a9841795670e2763952a0dd562ba4ba (diff)
downloadbcm5719-llvm-6088e851773e82e612023a75f1a174e662a88254.tar.gz
bcm5719-llvm-6088e851773e82e612023a75f1a174e662a88254.zip
Remove unnecessary semicolon to silence -Wpedantic warning. NFCI.
llvm-svn: 341555
Diffstat (limited to 'llvm/lib/XRay')
-rw-r--r--llvm/lib/XRay/BlockIndexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/XRay/BlockIndexer.cpp b/llvm/lib/XRay/BlockIndexer.cpp
index 4b76ad9ecdc..4ea2ffbc391 100644
--- a/llvm/lib/XRay/BlockIndexer.cpp
+++ b/llvm/lib/XRay/BlockIndexer.cpp
@@ -54,7 +54,7 @@ Error BlockIndexer::visit(CustomEventRecord &R) {
Error BlockIndexer::visit(CallArgRecord &R) {
CurrentBlock.Records.push_back(&R);
return Error::success();
-};
+}
Error BlockIndexer::visit(PIDRecord &R) {
CurrentBlock.ProcessID = R.pid();
OpenPOWER on IntegriCloud