[clang] [llvm] [CUDA/HIP][SYCL] Deduplicate deferred diagnostics across multiple callers (PR #185926)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 11 10:15:55 PDT 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,cpp -- clang/include/clang/Sema/SemaCUDA.h clang/lib/Sema/Sema.cpp clang/test/OpenMP/nvptx_unsupported_type_messages.cpp clang/test/SemaSYCL/sycl-kernel-entry-point-attr-device-odr-use.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/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp
index f13781498..85038b0ac 100644
--- a/clang/lib/Sema/Sema.cpp
+++ b/clang/lib/Sema/Sema.cpp
@@ -1988,10 +1988,9 @@ public:
if (Caller) {
auto &Callers = S.CUDA().DeviceKnownEmittedFns[FD];
CanonicalDeclPtr<const FunctionDecl> CanonCaller(Caller);
- if (llvm::none_of(Callers,
- [CanonCaller](const auto &C) {
- return C.FD == CanonCaller;
- }))
+ if (llvm::none_of(Callers, [CanonCaller](const auto &C) {
+ return C.FD == CanonCaller;
+ }))
Callers.push_back({Caller, Loc});
}
if (ShouldEmitRootNode || InOMPDeviceContext)
``````````
</details>
https://github.com/llvm/llvm-project/pull/185926
More information about the cfe-commits
mailing list