github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp --
clang/lib/Lex/PPDirectives.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp
index 38780f4fc..88448f9b3 100644
--- a/clang/lib/Lex/PPDirectives.cpp
+++ b/clang/lib/Lex/PPDirectives.cpp
@@ -3289,7 +3289,9 @@ void Preprocessor::HandleDefineDirective(
// Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and
// C++ [cpp.predefined]p4, but allow it as an extension.
if (isLanguageDefinedBuiltin(SourceMgr, OtherMI, II->getName()))
- Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro) <<
MacroNameTok.getIdentifierInfo(); // inserting this diagonstic message into
stream.
+ Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro)
+ << MacroNameTok.getIdentifierInfo(); // inserting this diagonstic
+ // message into stream.
// Macros must be identical. This means all tokens and whitespace
// separation must be the same. C99 6.10.3p2.
else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
@@ -3354,7 +3356,9 @@ void Preprocessor::HandleUndefDirective() {
// Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4 and
// C++ [cpp.predefined]p4, but allow it as an extension.
if (isLanguageDefinedBuiltin(SourceMgr, MI, II->getName()))
- Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro) <<
MacroNameTok.getIdentifierInfo(); // inserting this diagnostic message into it
+ Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro)
+ << MacroNameTok.getIdentifierInfo(); // inserting this diagnostic
+ // message into it
if (MI->isWarnIfUnused())
WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
``````````
</details>
https://github.com/llvm/llvm-project/pull/167299
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits