diff options
author | Martin Storsjö <martin@martin.st> | 2021-02-25 14:50:56 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2021-02-25 14:54:19 +0200 |
commit | 0c8b26bf530b3fc65af9205c593583f26549da3e (patch) | |
tree | 71b5ce7897c15cdc1a931b1fdf890622c977df0b /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 43cac1d27d7d57a7800150f95c3f8ac1e3b2bc2b (diff) | |
download | llvm-0c8b26bf530b3fc65af9205c593583f26549da3e.zip llvm-0c8b26bf530b3fc65af9205c593583f26549da3e.tar.gz llvm-0c8b26bf530b3fc65af9205c593583f26549da3e.tar.bz2 |
[clang] Remove a superfluous semicolon, silencing GCC warnings. NFC.
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index f53cc8b..eb44754 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -1147,7 +1147,7 @@ GenerateOptimizationRemark(SmallVectorImpl<const char *> &Args, } else if (Remark.Kind == CodeGenOptions::RK_Disabled) { GenerateArg(Args, OPT_R_Joined, StringRef("no-") + Name, SA); } -}; +} /// Parse a remark command line argument. It may be missing, disabled/enabled by /// '-R[no-]group' or specified with a regular expression by '-Rgroup=regexp'. |