[www-releases] r198630 - Update Clang 3.4 release notes on website to match r198626.

Richard Smith richard-llvm at metafoo.co.uk
Mon Jan 6 11:40:57 PST 2014


Author: rsmith
Date: Mon Jan  6 13:40:57 2014
New Revision: 198630

URL: http://llvm.org/viewvc/llvm-project?rev=198630&view=rev
Log:
Update Clang 3.4 release notes on website to match r198626.

Modified:
    www-releases/trunk/3.4/tools/clang/docs/ReleaseNotes.html

Modified: www-releases/trunk/3.4/tools/clang/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.4/tools/clang/docs/ReleaseNotes.html?rev=198630&r1=198629&r2=198630&view=diff
==============================================================================
--- www-releases/trunk/3.4/tools/clang/docs/ReleaseNotes.html (original)
+++ www-releases/trunk/3.4/tools/clang/docs/ReleaseNotes.html Mon Jan  6 13:40:57 2014
@@ -140,7 +140,7 @@ left-hand side of a comparison.  This wa
 <li><p class="first">Boolean increment, a deprecated feature, has own warning flag
 -Wdeprecated-increment-bool, and is still part of -Wdeprecated.</p>
 </li>
-<li><p class="first">Clang errors on builtin enum increments and decrements.</p>
+<li><p class="first">Clang errors on builtin enum increments and decrements in C++.</p>
 <div class="highlight-c++"><div class="highlight"><pre><span class="k">enum</span> <span class="n">A</span> <span class="p">{</span> <span class="n">A1</span><span class="p">,</span> <span class="n">A2</span> <span class="p">};</span>
 <span class="kt">void</span> <span class="nf">test</span><span class="p">()</span> <span class="p">{</span>
     <span class="n">A</span> <span class="n">a</span><span class="p">;</span>
@@ -149,7 +149,7 @@ left-hand side of a comparison.  This wa
 </pre></div>
 </div>
 <p>returns
-<cite>error: must use ‘enum’ tag to refer to type ‘A’</cite></p>
+<cite>error: cannot increment expression of enum type ‘A’</cite></p>
 </li>
 <li><p class="first">-Wloop-analysis now warns on for-loops which have the same increment or
 decrement in the loop header as the last statement in the loop.</p>
@@ -229,7 +229,7 @@ options (<tt class="docutils literal"><s
 <ul class="simple">
 <li>Fixed an ABI regression, introduced in Clang 3.2, which affected
 member offsets for classes inheriting from certain classes with tail padding.
-See PR16537.</li>
+See <a class="reference external" href="http://llvm.org/PR16537">PR16537</a>.</li>
 <li>Clang 3.4 supports the 2013-08-28 draft of the ISO WG21 SG10 feature test
 macro recommendations. These aim to provide a portable method to determine
 whether a compiler supports a language feature, much like Clang’s
@@ -345,4 +345,4 @@ list</a>.</p>
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b3.
     </div>
   </body>
-</html>
\ No newline at end of file
+</html>





More information about the llvm-commits mailing list