Clang (In-Progress) Release Notes¶
Written by the LLVM Team
Warning
These are in-progress notes for the upcoming Clang 24 release. Release notes for previous releases can be found on the Releases Page.
Introduction¶
This document contains the release notes for the Clang C/C++/Objective-C frontend, part of the LLVM Compiler Infrastructure, release 24.0.0git. Here we describe the status of Clang in some detail, including major improvements from the previous release and new feature work. For the general LLVM release notes, see the LLVM documentation. For the libc++ release notes, see this page. All LLVM releases may be downloaded from the LLVM releases web site.
For more information about Clang or LLVM, including information about the latest release, please see the Clang Web Site or the LLVM Web Site.
Potentially Breaking Changes¶
C/C++ Language Potentially Breaking Changes¶
C++ Specific Potentially Breaking Changes¶
ABI Changes in This Version¶
AST Dumping Potentially Breaking Changes¶
Clang Frontend Potentially Breaking Changes¶
Templight support has been removed.
Clang Python Bindings Potentially Breaking Changes¶
OpenCL Potentially Breaking Changes¶
What’s New in Clang 24.0.0git?¶
C++ Language Changes¶
C++2d Feature Support¶
C++2c Feature Support¶
Clang now supports P3533R2 (constexpr virtual inheritance).
C++23 Feature Support¶
C++20 Feature Support¶
C++17 Feature Support¶
Resolutions to C++ Defect Reports¶
C Language Changes¶
C2y Feature Support¶
Clang now supports C2y’s new syntax for
ifandswitchstatements with initializer and condition variables, as specified in N3356_. For example:
if (bool x = true; x) {
// ...
}
if (bool x = true) {
// ...
}
// attribute list on declarations are also supported
switch ([[maybe_unused]] int x = 1) {
default:
// ...
}
if (bool x [[maybe_unused]] = true; x) {
// ...
}
C23 Feature Support¶
Objective-C Language Changes¶
Non-comprehensive list of changes in this release¶
New Compiler Flags¶
Deprecated Compiler Flags¶
Modified Compiler Flags¶
Removed Compiler Flags¶
Attribute Changes in Clang¶
Improvements to Clang’s diagnostics¶
Fixed bug in
-Wdocumentationso that it correctly handles explicit function template instantiations (#64087).Fixed concept template parameters not being recognized in
-Wdocumentationwhen mentioned in tparam comments. (#64087)-Wunused-but-set-variablenow diagnoses file-scope variables with internal linkage (staticstorage class) that are assigned but never used. This new coverage is added under the subgroup-Wunused-but-set-global, allowing it to be disabled independently with-Wno-unused-but-set-global. (#148361)-Wunused-templateis now part of-Wunused(which is enabled by-Wall). It diagnoses unused function and variable templates with internal linkage, which in a header is a latent ODR hazard. It can be disabled with-Wno-unused-template. (#202945)Added
-Wlifetime-safetyto enable lifetime safety analysis, a CFG-based intra-procedural analysis that detects use-after-free and related temporal safety bugs. See the RFC for more details. By design, this warning is enabled in-Weverything. To disable the analysis, use-Wno-lifetime-safetyor-fno-lifetime-safety.Added
-Wlifetime-safety-suggestionsto enable lifetime annotation suggestions. This provides suggestions for function parameters that should be marked[[clang::lifetimebound]]based on lifetime analysis. For example, for the following function:int* p(int *in) { return in; }
Clang will suggest:
warning: parameter in intra-TU function should be marked [[clang::lifetimebound]] int* p(int *in) { return in; } ^~~~~~~ [[clang::lifetimebound]] note: param returned here int* p(int *in) { return in; } ^~
Added
-Wlifetime-safety-noescapeto detect misuse of[[clang::noescape]]annotation where the parameter escapes through return. For example:int* p(int *in [[clang::noescape]]) { return in; }
Clang will warn:
warning: parameter is marked [[clang::noescape]] but escapes int* p(int *in [[clang::noescape]]) { return in; } ^~~~~~~ note: returned here int* p(int *in [[clang::noescape]]) { return in; } ^~
Added
-Wlifetime-safety-dangling-fieldto detect dangling field references when stack memory escapes to class fields. This is part of-Wlifetime-safetyand detects cases where local variables or parameters are stored in fields but outlive their scope. For example:struct DanglingView { std::string_view view; DanglingView(std::string s) : view(s) {} // warning: address of stack memory escapes to a field };
Improved
-Wassign-enumperformance by caching enum enumerator values. (#176454)Fixed a false negative in
-Warray-boundswhere the warning was suppressed when accessing a member function on a past-the-end array element. (#179128)Added a missing space to the FixIt for the
implicit-intgroup of diagnostics and made sure that only one such diagnostic and FixIt is emitted per declaration group. (#179354)Fixed the Fix-It insertion point for
expected ';' after alias declarationwhen parsing alias declarations involving a token-split>>sequence (for example,using A = X<int>>;). (#184425)Fixed incorrect
implicitly deleteddiagnostic for explicitly deleted candidate function. (#185693)The
-Wloop-analysiswarning has been extended to catch more cases of variable modification inside lambda expressions (#132038).Clang now emits
-Wsizeof-pointer-memaccesswhen snprintf/vsnprintf use the sizeof the destination buffer(dynamically allocated) in the len parameter(#162366)Added
-Wmodule-map-path-outside-directory(off by default) to warn on header and umbrella directory paths that use..to refer outside the module directory in module maps found via implicit search (-fimplicit-module-maps). This does not affect module maps specified explicitly via-fmodule-map-file=.Honour
[[maybe_unused]]attribute on private fields.-Wunused-private-fieldno longer emits a warning for annotated private fields.Improved
-Wgnu-zero-variadic-macro-argumentsto suggest using__VA_OPT__if the current language version supports it(#188624)Clang now emits an error when implicitly casting a complex type to a built-in vector type. (#186805)
Added
-Wnonportable-include-path-separator(off by default) to catch #include directives that use backslashes as a path separator. The warning includes a FixIt to change all the backslashes to forward slashes, so that the code can automatically be made portable to other host platforms that don’t support backslashes.Clang now explains why template deduction fails for explicit template arguments.
No longer emitting a
-Wpre-c2y-compator extension diagnostic about use of octal literals with a0oprefix, and no longer emitting a-Wdeprecated-octal-literalsdiagnostic for use of octal literals without a0oprefix, when the literal is expanded from a macro defined in a system header. (#192389)Improved error recovery for missing semicolons after class members. Clang now avoids skipping subsequent valid declarations when their previous decl is missing semicolon.
Removed the body of lambdas from some diagnostic messages.
Fixed false positive host-device mismatch errors in discarded
if constexprbranches for CUDA/HIP; such calls are now correctly skipped.Clang now errors when a function declaration aliases a variable or vice versa. (#195550)
Added
-Wattribute-aliasto diagnose type mismatches between an alias and its aliased function. (#195550)The diagnostics around
__blocknow explain why a variable cannot be marked__block. (#197213)Extended
-Wnonportable-include-pathto warn about trailing whitespace and dots in#includepaths. (#190610)Clang now emits error when attribute is missing closing
]]followed by;;. (#187223)Clang now rejects inline asm constraints and clobbers that contain an embedded null character, instead of silently truncating them. (#173900)
Added
-Wstringop-overreadto warn whenmemcpy,memmove,memcmp, and related builtins read more bytes than the source buffer size (#83728).Diagnostics for the C++11 range-based for statement now report the correct iterator type in notes for invalid iterator types.
-Wfortify-sourcenow warns when the constant-evaluated argument toumaskhas bits set outside0777. Those bits are silently discarded by the kernel, so setting them is almost always a typo (matching the bionic libcdiagnose_ifcheck).Improved how Unicode characters are displayed in diagnostic messages.
-Wtautological-pointer-compareand-Wpointer-bool-conversionnow diagnose a reference to a function (e.g. of typevoid (&)()) compared against or converted to a null pointer, the same as a bare function name. (#46362)
Improvements to Clang’s time-trace¶
Improvements to Coverage Mapping¶
Bug Fixes in This Version¶
Fixed a constraint comparison bug in partial ordering. (#182671)
Fixed a rejected-valid case that used an explicit object parameter in an out-of-line definition of a nested class member. (#136472)
Bug Fixes to Compiler Builtins¶
Bug Fixes to Attribute Support¶
The
counted_by/counted_by_or_nulldiagnostic that rejects a pointer whose pointee is a struct with a flexible array member (e.g.struct with_fam * __sized_by(size) ptr;) was incorrectly also applied to thesized_by/sized_by_or_nullattributes. Becausesized_byandsized_by_or_nulldescribe the size in bytes rather than a count of elements, they are now correctly accepted on such pointers.
Bug Fixes to C++ Support¶
Fixed an issue where we tried to compare invalid NTTPs for variable declarations, which ended up in hitting an assertion with a constrained non-plain-auto NTTP, which we don’t quite implement yet. (#208658)
Fixed a crash when a using-declaration naming an unresolvable member of a dependent base was shadowed by an invalid using-declaration. (#209427)
Bug Fixes to AST Handling¶
Fixed a non-deterministic ordering of unused local typedefs that made serialized PCH/AST files and
-Wunused-local-typedefdiagnostics non-reproducible across runs. (#209639)
Miscellaneous Bug Fixes¶
Miscellaneous Clang Crashes Fixed¶
OpenACC Specific Changes¶
OpenCL Specific Changes¶
Extensions
cl_khr_extended_bit_ops,cl_khr_integer_dot_product,cl_khr_subgroup_extended_types,cl_khr_subgroup_rotate,cl_khr_subgroup_shuffle, andcl_khr_subgroup_shuffle_relativeare promoted to core features in OpenCL C 3.1. A target claiming OpenCL C 3.1 conformance without supporting one of these features is now diagnosed.
Target Specific Changes¶
AMDGPU Support¶
Deprecated the following builtins in favor of
__builtin_amdgcn_ballot_w32or__builtin_amdgcn_ballot_w64:__builtin_amdgcn_uicmp__builtin_amdgcn_uicmpl__builtin_amdgcn_sicmpl__builtin_amdgcn_fcmp__builtin_amdgcn_fcmpf
NVPTX Support¶
X86 Support¶
Arm and AArch64 Support¶
On AArch64 Windows targets,
-mbranch-protection=standardand-mbranch-protection=pac-retnow uses the B-key by default.
Android Support¶
Windows Support¶
LoongArch Support¶
RISC-V Support¶
CUDA/HIP Language Changes¶
CUDA Support¶
AIX Support¶
NetBSD Support¶
WebAssembly Support¶
AVR Support¶
SystemZ Support¶
DWARF Support in Clang¶
Floating Point Support in Clang¶
Fixed Point Support in Clang¶
AST Matchers¶
clang-format¶
libclang¶
Code Completion¶
Static Analyzer¶
Crash and bug fixes¶
Improvements¶
The lock-order-reversal check in
alpha.unix.PthreadLockis now disabled by default. It can be re-enabled with theWarnOnLockOrderReversaloption.
Moved checkers¶
Diagnostic changes¶
For self-assignments during initialization (
T v = v;),core.uninitialized.Assignwill not report them as uninitialized accesses (except C++ reference types), and the checks will be delayed until the first accesses of these variables;deadcode.DeadStoreswill not report them as dead stores. (#187530)
Sanitizers¶
Python Binding Changes¶
OpenMP Support¶
Added parsing and semantic support for
dimsmodifier innum_teamsandthread_limitclauses for OpenMP 6.1 or later.
SYCL Support¶
Improvements¶
Additional Information¶
A wide variety of additional information is available on the Clang web
page. The web page contains versions of the
API documentation which are up-to-date with the Git version of
the source code. You can access versions of these documents specific to
this release by going into the “clang/docs/” directory in the Clang
tree.
If you have any questions or comments about Clang, please feel free to contact us on the Discourse forums (Clang Frontend category).