Skip to content

Commit

Permalink
Mention some of the improvements in Clang 3.0 over 2.9.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142029 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
DougGregor committed Oct 15, 2011
1 parent d73462a commit ba087df
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/ReleaseNotes.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,21 @@ <h3>
(32- and 64-bit), and for darwin/arm targets.</p>

<p>In the LLVM 3.0 time-frame, the Clang team has made many improvements:</p>

<ul>
<li>Greatly improved support for building C++ applications, with greater stability and better diagnostics.</li>

<li><a href="http://clang.llvm.org/cxx_status.html">Improved support</a> for the <a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=50372 ">C++ 2011</a> standard, including implementations of non-static data member initializers, alias templates, delegating constructors, the range-based for loop, and implicitly-generated move constructors and move assignment operators, among others.</li>

<li>Implemented support for some features of the upcoming C1x standard, including static assertions and generic selections.</li>

<li>Better detection of include and linking paths for system headers and libraries, especially for Linux distributions.</li>

<li>Implemented support for <a href="http://clang.llvm.org/docs/AutomaticReferenceCounting.html">Automatic Reference Counting</a> for Objective-C.</li>

<li>Implemented a number of optimizations in <tt>libclang</tt>, the Clang C interface, to improve the performance of code completion and the mapping from source locations to abstract syntax tree nodes.</li>
</ul>


<p>If Clang rejects your code but another compiler accepts it, please take a
look at the <a href="http://clang.llvm.org/compatibility.html">language
Expand Down

0 comments on commit ba087df

Please sign in to comment.