[Mlir-commits] [llvm] [mlir] [mlir][OpenMP] Fix sanitizer error in buildTaskLikeBodyGenCallback (PR #174983)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Jan 8 06:23:00 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 cpp -- llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.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/lib/Frontend/OpenMP/OMPIRBuilder.cpp b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
index cd4c18181..75bf76816 100644
--- a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+++ b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
@@ -2150,11 +2150,10 @@ OpenMPIRBuilder::InsertPointOrErrorTy OpenMPIRBuilder::createTaskloop(
OI.Inputs.insert(FakeStep);
if (TaskContextStructPtrVal)
OI.Inputs.insert(TaskContextStructPtrVal);
- assert(
- ((TaskContextStructPtrVal && DupCB) ||
- (!TaskContextStructPtrVal && !DupCB)) &&
- "Task context struct ptr and duplication callback must be both set "
- "or both null");
+ assert(((TaskContextStructPtrVal && DupCB) ||
+ (!TaskContextStructPtrVal && !DupCB)) &&
+ "Task context struct ptr and duplication callback must be both set "
+ "or both null");
// It isn't safe to run the duplication bodygen callback inside the post
// outlining callback so this has to be run now before we know the real task
``````````
</details>
https://github.com/llvm/llvm-project/pull/174983
More information about the Mlir-commits
mailing list