[llvm] [AsmParser] Correctly handle .ifeqs nested in other conditional directives (PR #132713)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 04:05:21 PDT 2025
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 4398a222ad0861ead5aeea66e76ac28757b6389d a52ebfa57fc4a245a1d5ed85203862a93c9378a5 --extensions cpp -- llvm/lib/MC/MCParser/AsmParser.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp
index b0f0c5e5db..9448e7b301 100644
--- a/llvm/lib/MC/MCParser/AsmParser.cpp
+++ b/llvm/lib/MC/MCParser/AsmParser.cpp
@@ -5243,7 +5243,8 @@ bool AsmParser::parseDirectiveIfeqs(SMLoc DirectiveLoc, bool ExpectEqual) {
if (ExpectEqual)
return TokError(
"expected comma after first string for '.ifeqs' directive");
- return TokError("expected comma after first string for '.ifnes' directive");
+ return TokError(
+ "expected comma after first string for '.ifnes' directive");
}
Lex();
``````````
</details>
https://github.com/llvm/llvm-project/pull/132713
More information about the llvm-commits
mailing list