[clang] [llvm] [mlir] [LLVM] Improve IR parsing and printing for target memory locations (PR #176968)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 27 09:08:35 PST 2026
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 h,cl,cpp,c -- clang/test/CodeGen/sanitize-metadata-nosanitize.c clang/test/CodeGenOpenCL/convergent.cl llvm/include/llvm/AsmParser/LLToken.h llvm/include/llvm/Support/ModRef.h llvm/lib/AsmParser/LLLexer.cpp llvm/lib/AsmParser/LLParser.cpp llvm/lib/IR/Attributes.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/llvm/include/llvm/Support/ModRef.h b/llvm/include/llvm/Support/ModRef.h
index 1f5d8cc5a..8b6fc75c6 100644
--- a/llvm/include/llvm/Support/ModRef.h
+++ b/llvm/include/llvm/Support/ModRef.h
@@ -252,7 +252,7 @@ public:
ModRefInfo Expected = getModRef(IRMemLocation::FirstTarget);
auto First = static_cast<unsigned>(IRMemLocation::FirstTarget);
auto Last = static_cast<unsigned>(IRMemLocation::Last);
- for (unsigned ILoc = First +1; ILoc <= Last; ++ILoc) {
+ for (unsigned ILoc = First + 1; ILoc <= Last; ++ILoc) {
if (Expected != getModRef(static_cast<IRMemLocation>(ILoc)))
return false;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/176968
More information about the cfe-commits
mailing list