Skip to content

[C] Silence unreachable -Watomic-access diagnostics #140064

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions clang/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,19 @@ Improvements to Clang's diagnostics
- A new off-by-default warning ``-Wms-bitfield-padding`` has been added to alert to cases where bit-field
packing may differ under the MS struct ABI (#GH117428).

- ``-Watomic-access`` no longer fires on unreachable code. e.g.,

.. code-block:: c

_Atomic struct S { int a; } s;
void func(void) {
if (0)
s.a = 12; // Previously diagnosed with -Watomic-access, now silenced
s.a = 12; // Still diagnosed with -Watomic-access
return;
s.a = 12; // Previously diagnosed, now silenced
}


Improvements to Clang's time-trace
----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion clang/lib/Sema/SemaExprMember.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ static ExprResult LookupMemberExpr(Sema &S, LookupResult &R,
// lvalue. Because this is inherently unsafe as an atomic operation, the
// warning defaults to an error.
if (const auto *ATy = BaseType->getAs<AtomicType>()) {
S.DiagRuntimeBehavior(OpLoc, nullptr,
S.DiagRuntimeBehavior(OpLoc, BaseExpr.get(),
S.PDiag(diag::warn_atomic_member_access));
BaseType = ATy->getValueType().getUnqualifiedType();
BaseExpr = ImplicitCastExpr::Create(
Expand Down
17 changes: 17 additions & 0 deletions clang/test/Sema/atomic-expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,23 @@ void func_16(void) {
(void)sizeof(xp->val);
(void)sizeof(y.ival);
(void)sizeof(yp->ival);

// Also, do not diagnose in unreachable code paths.
{
if (0) {
x.val = 12;
xp->val = 12;
(void)y.ival;
(void)yp->ival;
}

return;

x.val = 12;
xp->val = 12;
(void)y.ival;
(void)yp->ival;
}
}

// Ensure that we correctly implement assignment constraints from C2x 6.5.16.1.
Expand Down