1
1
========================================
2
- Clang 13 .0.0 (In-Progress) Release Notes
2
+ Clang 14 .0.0 (In-Progress) Release Notes
3
3
========================================
4
4
5
5
.. contents ::
@@ -10,15 +10,15 @@ Written by the `LLVM Team <https://llvm.org/>`_
10
10
11
11
.. warning ::
12
12
13
- These are in-progress notes for the upcoming Clang 13 release.
13
+ These are in-progress notes for the upcoming Clang 14 release.
14
14
Release notes for previous releases can be found on
15
15
`the Download Page <https://releases.llvm.org/download.html >`_.
16
16
17
17
Introduction
18
18
============
19
19
20
20
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
22
22
describe the status of Clang in some detail, including major
23
23
improvements from the previous release and new feature work. For the
24
24
general LLVM release notes, see `the LLVM
@@ -35,7 +35,7 @@ main Clang web page, this document applies to the *next* release, not
35
35
the current one. To see the release notes for a specific release, please
36
36
see the `releases page <https://llvm.org/releases/ >`_.
37
37
38
- What's New in Clang 13 .0.0?
38
+ What's New in Clang 14 .0.0?
39
39
===========================
40
40
41
41
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.
46
46
Major New Features
47
47
------------------
48
48
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
+ - ...
56
50
57
51
Improvements to Clang's diagnostics
58
52
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -62,22 +56,12 @@ Improvements to Clang's diagnostics
62
56
Non-comprehensive list of changes in this release
63
57
-------------------------------------------------
64
58
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
+ - ...
68
60
69
61
New Compiler Flags
70
62
------------------
71
63
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
+ - ...
81
65
82
66
Deprecated Compiler Flags
83
67
-------------------------
@@ -87,25 +71,12 @@ Deprecated Compiler Flags
87
71
Modified Compiler Flags
88
72
-----------------------
89
73
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
+ - ...
99
75
100
76
Removed Compiler Flags
101
77
-------------------------
102
78
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
+ - ...
109
80
110
81
New Pragmas in Clang
111
82
--------------------
@@ -117,9 +88,6 @@ Attribute Changes in Clang
117
88
118
89
- ...
119
90
120
- - Added support for C++11-style ``[[]] `` attributes on using-declarations, as a
121
- clang extension.
122
-
123
91
Windows Support
124
92
---------------
125
93
@@ -131,9 +99,6 @@ C Language Changes in Clang
131
99
C++ Language Changes in Clang
132
100
-----------------------------
133
101
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
-
137
102
- ...
138
103
139
104
C++20 Feature Support
@@ -173,22 +138,11 @@ X86 Support in Clang
173
138
Internal API Changes
174
139
--------------------
175
140
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
-
180
141
- ...
181
142
182
143
Build System Changes
183
144
--------------------
184
145
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
-
192
146
- ...
193
147
194
148
AST Matchers
@@ -199,90 +153,7 @@ AST Matchers
199
153
clang-format
200
154
------------
201
155
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
+ - ...
286
157
287
158
libclang
288
159
--------
0 commit comments