[llvm] r275399 - Remove extra ';' to appease -Wpedantic

Dean Michael Berris via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 14 04:46:42 PDT 2016


Author: dberris
Date: Thu Jul 14 06:46:41 2016
New Revision: 275399

URL: http://llvm.org/viewvc/llvm-project?rev=275399&view=rev
Log:
Remove extra ';' to appease -Wpedantic

Summary:

Reviewers: dok

Subscribers: llvm-commits

Modified:
    llvm/trunk/lib/CodeGen/XRayInstrumentation.cpp

Modified: llvm/trunk/lib/CodeGen/XRayInstrumentation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/XRayInstrumentation.cpp?rev=275399&r1=275398&r2=275399&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/XRayInstrumentation.cpp (original)
+++ llvm/trunk/lib/CodeGen/XRayInstrumentation.cpp Thu Jul 14 06:46:41 2016
@@ -93,4 +93,4 @@ bool XRayInstrumentation::runOnMachineFu
 char XRayInstrumentation::ID = 0;
 char &llvm::XRayInstrumentationID = XRayInstrumentation::ID;
 INITIALIZE_PASS(XRayInstrumentation, "xray-instrumentation", "Insert XRay ops",
-                false, false);
+                false, false)




More information about the llvm-commits mailing list