From 086639a6d099c2fdfcf251f8d53c10a1014086af Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Thu, 14 Jul 2016 11:46:41 +0000 Subject: [PATCH] Remove extra ';' to appease -Wpedantic Summary: Reviewers: dok Subscribers: llvm-commits llvm-svn: 275399 --- llvm/lib/CodeGen/XRayInstrumentation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/XRayInstrumentation.cpp b/llvm/lib/CodeGen/XRayInstrumentation.cpp index 3903fb8..1f95708 100644 --- a/llvm/lib/CodeGen/XRayInstrumentation.cpp +++ b/llvm/lib/CodeGen/XRayInstrumentation.cpp @@ -93,4 +93,4 @@ bool XRayInstrumentation::runOnMachineFunction(MachineFunction &MF) { char XRayInstrumentation::ID = 0; char &llvm::XRayInstrumentationID = XRayInstrumentation::ID; INITIALIZE_PASS(XRayInstrumentation, "xray-instrumentation", "Insert XRay ops", - false, false); + false, false) -- 2.7.4