Skip to content
Merged
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
7 changes: 4 additions & 3 deletions clang/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ C++ Specific Potentially Breaking Changes
- A workaround for libstdc++4.7 has been removed. Note that 4.8.3 remains the oldest
supported libstdc++ version.
- Added ``!nonnull/!align`` metadata to load of references for better codegen.
- Checking for int->enum conversions in constant expressions is more strict;
in particular, ``const E x = (E)-1;`` is not treated as a constant if it's
out of range. This impacts old versions of Boost. (#GH143034)
- Checking for integer to enum conversions in constant expressions is more
strict; in particular, ``const E x = (E)-1;`` is not treated as a constant
if it's out of range. The Boost numeric_conversion library is impacted by
this; it was fixed in Boost 1.81. (#GH143034)

ABI Changes in This Version
---------------------------
Expand Down
Loading