From 29e82d7eb1820fdf604fbcce71899dbb095a864b Mon Sep 17 00:00:00 2001 From: Michael Kruse Date: Tue, 6 Jun 2017 15:56:50 +0000 Subject: [PATCH] [CodeGen] Remove extra ';'. NFC. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix compiler warning: polly/lib/CodeGen/PerfMonitor.cpp:81:2: warning: extra ‘;’ [-Wpedantic] }; ^ git-svn-id: https://llvm.org/svn/llvm-project/polly/trunk@304802 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/PerfMonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/PerfMonitor.cpp b/lib/CodeGen/PerfMonitor.cpp index 0829934a..971263fa 100644 --- a/lib/CodeGen/PerfMonitor.cpp +++ b/lib/CodeGen/PerfMonitor.cpp @@ -78,7 +78,7 @@ static void TryRegisterGlobal(Module *M, const char *Name, *Location = new GlobalVariable( *M, InitialValue->getType(), true, GlobalValue::WeakAnyLinkage, InitialValue, Name, nullptr, GlobalVariable::InitialExecTLSModel); -}; +} // Generate a unique name that is usable as a LLVM name for a scop to name its // performance counter. -- 2.11.4.GIT