blob: 5435ce50f60dc3355e356c28be5b4c070a62250b [file] [log] [blame]
Sean Silvab0455142013-01-02 22:05:33 +00001=====================================
2Clang 3.3 (In-Progress) Release Notes
3=====================================
Sean Silvafe251442012-12-23 01:19:35 +00004
5.. contents::
6 :local:
7 :depth: 2
8
9Written by the `LLVM Team <http://llvm.org/>`_
10
11.. warning::
12
13 These are in-progress notes for the upcoming Clang 3.3 release. You may
14 prefer the `Clang 3.2 Release Notes
15 <http://llvm.org/releases/3.2/docs/ClangReleaseNotes.html>`_.
16
17Introduction
18============
19
20This document contains the release notes for the Clang C/C++/Objective-C
21frontend, part of the LLVM Compiler Infrastructure, release 3.3. Here we
22describe the status of Clang in some detail, including major
23improvements from the previous release and new feature work. For the
24general LLVM release notes, see `the LLVM
25documentation <http://llvm.org/docs/ReleaseNotes.html>`_. All LLVM
26releases may be downloaded from the `LLVM releases web
27site <http://llvm.org/releases/>`_.
28
29For more information about Clang or LLVM, including information about
30the latest release, please check out the main please see the `Clang Web
31Site <http://clang.llvm.org>`_ or the `LLVM Web
32Site <http://llvm.org>`_.
33
34Note that if you are reading this file from a Subversion checkout or the
35main Clang web page, this document applies to the *next* release, not
36the current one. To see the release notes for a specific release, please
37see the `releases page <http://llvm.org/releases/>`_.
38
39What's New in Clang 3.3?
40========================
41
42Some of the major new features and improvements to Clang are listed
43here. Generic improvements to Clang as a whole or to its underlying
44infrastructure are described first, followed by language-specific
45sections with improvements to Clang's support for those languages.
46
47Major New Features
48------------------
49
50Improvements to Clang's diagnostics
51^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
52
53Clang's diagnostics are constantly being improved to catch more issues,
54explain them more clearly, and provide more accurate source information
55about them. The improvements since the 3.2 release include:
56
57- ...
58
Jordan Rosed9759fd2013-02-09 02:12:23 +000059Extended Identifiers: Unicode Support and Universal Character Names
60^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
61
62Clang 3.3 includes support for *extended identifiers* in C99 and C++.
63This feature allows identifiers to contain certain Unicode characters, as
64specified by the active language standard; these characters can be written
65directly in the source file using the UTF-8 encoding, or referred to using
66*universal character names* (``\u00E0``, ``\U000000E0``).
67
Sean Silvafe251442012-12-23 01:19:35 +000068New Compiler Flags
69------------------
70
71- ...
72
73C Language Changes in Clang
74---------------------------
75
76C11 Feature Support
77^^^^^^^^^^^^^^^^^^^
78
79...
80
81C++ Language Changes in Clang
82-----------------------------
83
84C++11 Feature Support
85^^^^^^^^^^^^^^^^^^^^^
86
87...
88
89Objective-C Language Changes in Clang
90-------------------------------------
91
92...
93
94Internal API Changes
95--------------------
96
97These are major API changes that have happened since the 3.2 release of
98Clang. If upgrading an external codebase that uses Clang as a library,
99this section should help get you past the largest hurdles of upgrading.
100
101API change 1
102^^^^^^^^^^^^
103
104...
105
106Python Binding Changes
107----------------------
108
109The following methods have been added:
110
111- ...
112
113Significant Known Problems
114==========================
115
116Additional Information
117======================
118
119A wide variety of additional information is available on the `Clang web
120page <http://clang.llvm.org/>`_. The web page contains versions of the
121API documentation which are up-to-date with the Subversion version of
122the source code. You can access versions of these documents specific to
123this release by going into the "``clang/docs/``" directory in the Clang
124tree.
125
126If you have any questions or comments about Clang, please feel free to
127contact us via the `mailing
128list <http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev>`_.