Skip to content

Commit 08c766a

Browse files
committed
Bump the trunk major version to 14
and clear the release notes.
1 parent 88e66fa commit 08c766a

File tree

22 files changed

+66
-410
lines changed

22 files changed

+66
-410
lines changed

clang-tools-extra/docs/ReleaseNotes.rst

+5-90
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
====================================================
2-
Extra Clang Tools 13.0.0 (In-Progress) Release Notes
2+
Extra Clang Tools 14.0.0 (In-Progress) Release Notes
33
====================================================
44

55
.. contents::
@@ -10,15 +10,15 @@ Written by the `LLVM Team <https://llvm.org/>`_
1010

1111
.. warning::
1212

13-
These are in-progress notes for the upcoming Extra Clang Tools 13 release.
13+
These are in-progress notes for the upcoming Extra Clang Tools 14 release.
1414
Release notes for previous releases can be found on
1515
`the Download Page <https://releases.llvm.org/download.html>`_.
1616

1717
Introduction
1818
============
1919

2020
This document contains the release notes for the Extra Clang Tools, part of the
21-
Clang release 13.0.0. Here we describe the status of the Extra Clang Tools in
21+
Clang release 14.0.0. Here we describe the status of the Extra Clang Tools in
2222
some detail, including major improvements from the previous release and new
2323
feature work. All LLVM releases may be downloaded from the `LLVM releases web
2424
site <https://llvm.org/releases/>`_.
@@ -32,7 +32,7 @@ main Clang web page, this document applies to the *next* release, not
3232
the current one. To see the release notes for a specific release, please
3333
see the `releases page <https://llvm.org/releases/>`_.
3434

35-
What's New in Extra Clang Tools 13.0.0?
35+
What's New in Extra Clang Tools 14.0.0?
3636
=======================================
3737

3838
Some of the major new features and improvements to Extra Clang Tools are listed
@@ -67,105 +67,20 @@ The improvements are...
6767
Improvements to clang-tidy
6868
--------------------------
6969

70-
- The `run-clang-tidy.py` helper script is now installed in `bin/` as
71-
`run-clang-tidy`. It was previously installed in `share/clang/`.
72-
73-
- Added command line option `--fix-notes` to apply fixes found in notes
74-
attached to warnings. These are typically cases where we are less confident
75-
the fix will have the desired effect.
76-
77-
- libToolingCore and Clang-Tidy was refactored and now checks can produce
78-
highlights (`^~~~~` under fragments of the source code) in diagnostics.
79-
Existing and new checks in the future can be expected to start implementing
80-
this functionality.
81-
This change only affects the visual rendering of diagnostics, and does not
82-
alter the behavior of generated fixes.
70+
The improvements are...
8371

8472
New checks
8573
^^^^^^^^^^
8674

87-
- New :doc:`bugprone-implicit-widening-of-multiplication-result
88-
<clang-tidy/checks/bugprone-implicit-widening-of-multiplication-result>` check.
89-
90-
Diagnoses instances of an implicit widening of multiplication result.
91-
92-
- New :doc:`concurrency-thread-canceltype-asynchronous
93-
<clang-tidy/checks/concurrency-thread-canceltype-asynchronous>` check.
94-
95-
Finds ``pthread_setcanceltype`` function calls where a thread's cancellation
96-
type is set to asynchronous.
97-
98-
- New :doc:`altera-id-dependent-backward-branch
99-
<clang-tidy/checks/altera-id-dependent-backward-branch>` check.
100-
101-
Finds ID-dependent variables and fields that are used within loops. This
102-
causes branches to occur inside the loops, and thus leads to performance
103-
degradation.
104-
105-
- New :doc:`altera-unroll-loops
106-
<clang-tidy/checks/altera-unroll-loops>` check.
107-
108-
Finds inner loops that have not been unrolled, as well as fully unrolled
109-
loops with unknown loops bounds or a large number of iterations.
110-
111-
- New :doc:`bugprone-easily-swappable-parameters
112-
<clang-tidy/checks/bugprone-easily-swappable-parameters>` check.
113-
114-
Finds function definitions where parameters of convertible types follow each
115-
other directly, making call sites prone to calling the function with
116-
swapped (or badly ordered) arguments.
117-
118-
- New :doc:`cppcoreguidelines-prefer-member-initializer
119-
<clang-tidy/checks/cppcoreguidelines-prefer-member-initializer>` check.
120-
121-
Finds member initializations in the constructor body which can be placed into
122-
the initialization list instead.
123-
124-
- New :doc:`bugprone-unhandled-exception-at-new
125-
<clang-tidy/checks/bugprone-unhandled-exception-at-new>` check.
126-
127-
Finds calls to ``new`` with missing exception handler for ``std::bad_alloc``.
128-
129-
- New `readability-suspicious-call-argument
130-
<clang-tidy/checks/readability-suspicious-call-argument>`_ check
131-
132-
Finds function calls where the arguments passed are provided out of order,
133-
based on the difference between the argument name and the parameter names
134-
of the function.
135-
13675
New check aliases
13776
^^^^^^^^^^^^^^^^^
13877

139-
- New alias :doc:`cert-pos47-c
140-
<clang-tidy/checks/cert-pos47-c>` to
141-
:doc:`concurrency-thread-canceltype-asynchronous
142-
<clang-tidy/checks/concurrency-thread-canceltype-asynchronous>` was added.
143-
144-
14578
Changes in existing checks
14679
^^^^^^^^^^^^^^^^^^^^^^^^^^
14780

148-
- Improved :doc:`bugprone-signal-handler
149-
<clang-tidy/checks/bugprone-signal-handler>` check.
150-
151-
Added an option to choose the set of allowed functions.
152-
153-
- Improved :doc:`readability-uniqueptr-delete-release
154-
<clang-tidy/checks/readability-uniqueptr-delete-release>` check.
155-
156-
Added an option to choose whether to refactor by calling the ``reset`` member
157-
function or assignment to ``nullptr``.
158-
Added support for pointers to ``std::unique_ptr``.
159-
16081
Removed checks
16182
^^^^^^^^^^^^^^
16283

163-
- The readability-deleted-default check has been removed.
164-
165-
The clang warning `Wdefaulted-function-deleted
166-
<https://clang.llvm.org/docs/DiagnosticsReference.html#wdefaulted-function-deleted>`_
167-
will diagnose the same issues and is enabled by default.
168-
16984
Improvements to include-fixer
17085
-----------------------------
17186

clang-tools-extra/docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
# built documents.
5050
#
5151
# The short version.
52-
version = '13'
52+
version = '14'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '13'
54+
release = '14'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# for a list of supported languages.

clang/docs/ReleaseNotes.rst

+10-139
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
========================================
2-
Clang 13.0.0 (In-Progress) Release Notes
2+
Clang 14.0.0 (In-Progress) Release Notes
33
========================================
44

55
.. contents::
@@ -10,15 +10,15 @@ Written by the `LLVM Team <https://llvm.org/>`_
1010

1111
.. warning::
1212

13-
These are in-progress notes for the upcoming Clang 13 release.
13+
These are in-progress notes for the upcoming Clang 14 release.
1414
Release notes for previous releases can be found on
1515
`the Download Page <https://releases.llvm.org/download.html>`_.
1616

1717
Introduction
1818
============
1919

2020
This document contains the release notes for the Clang C/C++/Objective-C
21-
frontend, part of the LLVM Compiler Infrastructure, release 13.0.0. Here we
21+
frontend, part of the LLVM Compiler Infrastructure, release 14.0.0. Here we
2222
describe the status of Clang in some detail, including major
2323
improvements from the previous release and new feature work. For the
2424
general LLVM release notes, see `the LLVM
@@ -35,7 +35,7 @@ main Clang web page, this document applies to the *next* release, not
3535
the current one. To see the release notes for a specific release, please
3636
see the `releases page <https://llvm.org/releases/>`_.
3737

38-
What's New in Clang 13.0.0?
38+
What's New in Clang 14.0.0?
3939
===========================
4040

4141
Some of the major new features and improvements to Clang are listed
@@ -46,13 +46,7 @@ sections with improvements to Clang's support for those languages.
4646
Major New Features
4747
------------------
4848

49-
- Guaranteed tail calls are now supported with statement attributes
50-
``[[clang::musttail]]`` in C++ and ``__attribute__((musttail))`` in C. The
51-
attribute is applied to a return statement (not a function declaration),
52-
and an error is emitted if a tail call cannot be guaranteed, for example if
53-
the function signatures of caller and callee are not compatible. Guaranteed
54-
tail calls enable a class of algorithms that would otherwise use an
55-
arbitrary amount of stack space.
49+
- ...
5650

5751
Improvements to Clang's diagnostics
5852
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -62,22 +56,12 @@ Improvements to Clang's diagnostics
6256
Non-comprehensive list of changes in this release
6357
-------------------------------------------------
6458

65-
- The default value of _MSC_VER was raised from 1911 to 1914. MSVC 19.14 has the
66-
support to overaligned objects on x86_32 which is required for some LLVM
67-
passes.
59+
- ...
6860

6961
New Compiler Flags
7062
------------------
7163

72-
- ``-Wreserved-identifier`` emits warning when user code uses reserved
73-
identifiers.
74-
75-
- ``-fstack-usage`` generates an extra .su file per input source file. The .su
76-
file contains frame size information for each function defined in the source
77-
file.
78-
79-
- ``-Wnull-pointer-subtraction`` emits warning when user code may have
80-
undefined behaviour due to subtraction involving a null pointer.
64+
- ...
8165

8266
Deprecated Compiler Flags
8367
-------------------------
@@ -87,25 +71,12 @@ Deprecated Compiler Flags
8771
Modified Compiler Flags
8872
-----------------------
8973

90-
- -Wshadow now also checks for shadowed structured bindings
91-
- ``-B <prefix>`` (when ``<prefix>`` is a directory) was overloaded to additionally
92-
detect GCC installations under ``<prefix>`` (``lib{,32,64}/gcc{,-cross}/$triple``).
93-
This behavior was incompatible with GCC, caused interop issues with
94-
``--gcc-toolchain``, and was thus dropped. Specify ``--gcc-toolchain=<dir>``
95-
instead. ``-B``'s other GCC-compatible semantics are preserved:
96-
``$prefix/$triple-$file`` and ``$prefix$file`` are searched for executables,
97-
libraries, includes, and data files used by the compiler.
98-
- ``-Wextra`` now also implies ``-Wnull-pointer-subtraction.``
74+
- ...
9975

10076
Removed Compiler Flags
10177
-------------------------
10278

103-
- The clang-cl ``/fallback`` flag, which made clang-cl invoke Microsoft Visual
104-
C++ on files it couldn't compile itself, has been removed.
105-
106-
- ``-Wreturn-std-move-in-c++11``, which checked whether an entity is affected by
107-
`CWG1579 <https://wg21.link/CWG1579>`_ to become implicitly movable, has been
108-
removed.
79+
- ...
10980

11081
New Pragmas in Clang
11182
--------------------
@@ -117,9 +88,6 @@ Attribute Changes in Clang
11788

11889
- ...
11990

120-
- Added support for C++11-style ``[[]]`` attributes on using-declarations, as a
121-
clang extension.
122-
12391
Windows Support
12492
---------------
12593

@@ -131,9 +99,6 @@ C Language Changes in Clang
13199
C++ Language Changes in Clang
132100
-----------------------------
133101

134-
- The oldest supported GNU libstdc++ is now 4.8.3 (released 2014-05-22).
135-
Clang workarounds for bugs in earlier versions have been removed.
136-
137102
- ...
138103

139104
C++20 Feature Support
@@ -173,22 +138,11 @@ X86 Support in Clang
173138
Internal API Changes
174139
--------------------
175140

176-
These are major API changes that have happened since the 12.0.0 release of
177-
Clang. If upgrading an external codebase that uses Clang as a library,
178-
this section should help get you past the largest hurdles of upgrading.
179-
180141
- ...
181142

182143
Build System Changes
183144
--------------------
184145

185-
These are major changes to the build system that have happened since the 12.0.0
186-
release of Clang. Users of the build system should adjust accordingly.
187-
188-
- The option ``LIBCLANG_INCLUDE_CLANG_TOOLS_EXTRA`` no longer exists. There were
189-
two releases with that flag forced off, and no uses were added that forced it
190-
on. The recommended replacement is clangd.
191-
192146
- ...
193147

194148
AST Matchers
@@ -199,90 +153,7 @@ AST Matchers
199153
clang-format
200154
------------
201155

202-
- Option ``SpacesInLineCommentPrefix`` has been added to control the
203-
number of spaces in a line comments prefix.
204-
205-
- Option ``SortIncludes`` has been updated from a ``bool`` to an
206-
``enum`` with backwards compatibility. In addition to the previous
207-
``true``/``false`` states (now ``CaseSensitive``/``Never``), a third
208-
state has been added (``CaseInsensitive``) which causes an alphabetical sort
209-
with case used as a tie-breaker.
210-
211-
.. code-block:: c++
212-
213-
// Never (previously false)
214-
#include "B/A.h"
215-
#include "A/B.h"
216-
#include "a/b.h"
217-
#include "A/b.h"
218-
#include "B/a.h"
219-
220-
// CaseSensitive (previously true)
221-
#include "A/B.h"
222-
#include "A/b.h"
223-
#include "B/A.h"
224-
#include "B/a.h"
225-
#include "a/b.h"
226-
227-
// CaseInsensitive
228-
#include "A/B.h"
229-
#include "A/b.h"
230-
#include "a/b.h"
231-
#include "B/A.h"
232-
#include "B/a.h"
233-
234-
- ``BasedOnStyle: InheritParentConfig`` allows to use the ``.clang-format`` of
235-
the parent directories to overwrite only parts of it.
236-
237-
- Option ``IndentAccessModifiers`` has been added to be able to give access
238-
modifiers their own indentation level inside records.
239-
240-
- Option ``PPIndentWidth`` has been added to be able to configure pre-processor
241-
indentation independent from regular code.
242-
243-
- Option ``ShortNamespaceLines`` has been added to give better control
244-
over ``FixNamespaceComments`` when determining a namespace length.
245-
246-
- Support for Whitesmiths has been improved, with fixes for ``namespace`` blocks
247-
and ``case`` blocks and labels.
248-
249-
- Option ``EmptyLineAfterAccessModifier`` has been added to remove, force or keep
250-
new lines after access modifiers.
251-
252-
- Checks for newlines in option ``EmptyLineBeforeAccessModifier`` are now based
253-
on the formatted new lines and not on the new lines in the file. (Fixes
254-
https://llvm.org/PR41870.)
255-
256-
- Option ``SpacesInAngles`` has been improved, it now accepts ``Leave`` value
257-
that allows to keep spaces where they are already present.
258-
259-
- Option ``AllowShortIfStatementsOnASingleLine`` has been improved, it now
260-
accepts ``AllIfsAndElse`` value that allows to put "else if" and "else" short
261-
statements on a single line. (Fixes https://llvm.org/PR50019.)
262-
263-
- Option ``BreakInheritanceList`` gets a new style, ``AfterComma``. It breaks
264-
only after the commas that separate the base-specifiers.
265-
266-
- Option ``LambdaBodyIndentation`` has been added to control how the body of a
267-
lambda is indented. The default ``Signature`` value indents the body one level
268-
relative to whatever indentation the signature has. ``OuterScope`` lets you
269-
change that so that the lambda body is indented one level relative to the scope
270-
containing the lambda, regardless of where the lambda signature was placed.
271-
272-
- Option ``IfMacros`` has been added. This lets you define macros that get
273-
formatted like conditionals much like ``ForEachMacros`` get styled like
274-
foreach loops.
275-
276-
- ``git-clang-format`` no longer formats changes to symbolic links. (Fixes
277-
https://llvm.org/PR46992.)
278-
279-
- Makes ``PointerAligment: Right`` working with ``AlignConsecutiveDeclarations``.
280-
(Fixes https://llvm.org/PR27353)
281-
282-
- Option ``AlignArrayOfStructure`` has been added to allow for ordering array-like
283-
initializers.
284-
285-
- Support for formatting JSON file (\*.json) has been added to clang-format.
156+
- ...
286157

287158
libclang
288159
--------

0 commit comments

Comments
 (0)