diff options
| author | Michael Kruse <llvm@meinersbur.de> | 2017-06-06 15:56:50 +0000 |
|---|---|---|
| committer | Michael Kruse <llvm@meinersbur.de> | 2017-06-06 15:56:50 +0000 |
| commit | be194d4efde1a449db3ceb51ca5f0d4bcdca976d (patch) | |
| tree | 95e2b15463a1f4f076d1e1a780652ec4b4abfd57 /polly/lib | |
| parent | 64fb7a8ebd9cda778e7173bf6a53ff15790e5b93 (diff) | |
| download | bcm5719-llvm-be194d4efde1a449db3ceb51ca5f0d4bcdca976d.tar.gz bcm5719-llvm-be194d4efde1a449db3ceb51ca5f0d4bcdca976d.zip | |
[CodeGen] Remove extra ';'. NFC.
Fix compiler warning:
polly/lib/CodeGen/PerfMonitor.cpp:81:2: warning: extra ‘;’ [-Wpedantic]
};
^
llvm-svn: 304802
Diffstat (limited to 'polly/lib')
| -rw-r--r-- | polly/lib/CodeGen/PerfMonitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/PerfMonitor.cpp b/polly/lib/CodeGen/PerfMonitor.cpp index 0829934a07d..971263fad0c 100644 --- a/polly/lib/CodeGen/PerfMonitor.cpp +++ b/polly/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. |

