Author: dim
Date: Wed May 23 21:39:13 2012
New Revision: 235862
URL: http://svn.freebsd.org/changeset/base/235862

Log:
  Vendor import of clang release_31 r156863 (the actual 3.1 release):
  http://llvm.org/svn/llvm-project/cfe/branches/release_31@156863

Modified:
  vendor/clang/dist/docs/ReleaseNotes.html
  vendor/clang/dist/lib/Basic/Version.cpp

Modified: vendor/clang/dist/docs/ReleaseNotes.html
==============================================================================
--- vendor/clang/dist/docs/ReleaseNotes.html    Wed May 23 21:38:26 2012        
(r235861)
+++ vendor/clang/dist/docs/ReleaseNotes.html    Wed May 23 21:39:13 2012        
(r235862)
@@ -26,14 +26,12 @@ td {
   <li><a href="#intro">Introduction</a></li>
   <li><a href="#whatsnew">What's New in Clang 3.1?</a>
     <ul>
-      <li><a href="#majorfeatures">Major New Features</a></li>
       <li><a href="#cchanges">C Language Changes</a></li>
       <li><a href="#cxxchanges">C++ Language Changes</a></li>
       <li><a href="#objcchanges">Objective-C Language Changes</a></li>
-      <li><a href="#apichanges">Internal API Changes</a></li>
+      <li><a href="#pythonchanges">Python Binding Changes</a></li>
     </ul>
   </li>
-  <li><a href="#knownproblems">Known Problems</a></li>
   <li><a href="#additionalinfo">Additional Information</a></li>
 </ul>
 
@@ -41,12 +39,6 @@ td {
   <p>Written by the <a href="http://llvm.org/";>LLVM Team</a></p>
 </div>
 
-<h1 style="color:red">These are in-progress notes for the upcoming Clang 3.1
-release.<br>
-You may prefer the
-<a href="http://llvm.org/releases/3.0/docs/ClangReleaseNotes.html";>Clang 3.0
-Release Notes</a>.</h1>
-
 <!-- ======================================================================= 
-->
 <h2 id="intro">Introduction</h2>
 <!-- ======================================================================= 
-->
@@ -79,25 +71,6 @@ are described first, followed by languag
 Clang's support for those languages.</p>
 
 <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
-<h3 id="majorfeatures">Major New Features</h3>
-<!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
-
-<h4 id="majorfeature1">Feature 1</h4>
-...
-
-<h4 id="diagnostics">New and better diagnostics</h4>
-
-<p>New: <code>-Wdangling-else</code>, <code>-Wstrncat-size</code>, ...</p>
-
-<p>Improved: <code>-Wformat</code>, <code>-Wempty-body</code>,
-<code>-Wliteral-conversion</code>, ...</p>
-
-<h4 id="tooling">Tooling</h4>
-<!-- FIXME: add a link to the tooling documentation once that's written. -->
-<p>Added an API to enable clang-based standalone tools, including initial build
-system integration.</p>
-
-<!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
 <h3 id="cchanges">C Language Changes in Clang</h3>
 <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
 
@@ -141,24 +114,47 @@ following are now considered to be of pr
 <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
 Clang 3.1 introduces several new Objective-C language features and 
improvements.
 
+<h4 id="literals-subscripting">Objective-C literals and subscripting</h3>
+
+<p>Objective-C now provides additional literal expressions, including numeric, 
array, and dictionary literals. Additionally, array and dictionary elements can 
be accesses via the subscripting operator. For more information about the new 
literals, see the <a href="ObjectiveCLiterals.html">documentation for 
Objective-C literals and subscripting</a>.
+
 <h4 id="objcwformat">Format string checking for NSString literals</h4>
 
-<code>-Wformat</code> now checks <code>@"nsstring literals"</code>.
+<code>-Wformat</code> now checks <code>@"NSString literals"</code>.
 
 <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
-<h3 id="apichanges">Internal API Changes</h3>
+<h3 id="pythonchanges">Python Binding Changes</h3>
 <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
-->
 
-These are major API changes that have happened since the 3.0 release of Clang.
-If upgrading an external codebase that uses Clang as a library, this section
-should help get you past the largest hurdles of upgrading.
-
-<h4 id="api1">API change 1</h4>
-...
-
-<!-- ======================================================================= 
-->
-<h2 id="knownproblems">Significant Known Problems</h2>
-<!-- ======================================================================= 
-->
+The following methods have been added:
+<ul>
+  <li>SourceLocation.from_position (static)</li>
+  <li>SourceLocation.__eq__ and SourceLocation.__ne__</li>
+  <li>SourceRange.__eq__ and SourceRange.__ne__</li>
+  <li>Diagnostic.category_number (property)</li>
+  <li>Diagnostic.category_name (property)</li>
+  <li>Diagnostic.option (property)</li>
+  <li>Diagnostic.disable_option (property)</li>
+  <li>CursorKind.is_translation_unit</li>
+  <li>CursorKind.is_preprocessing</li>
+  <li>CursorKind.is_unexposed</li>
+  <li>Cursor.from_location (static)</li>
+  <li>Cursor.underlying_typedef_type (property)</li>
+  <li>Cursor.enum_type (property)</li>
+  <li>Cursor.objc_type_encoding (property)</li>
+  <li>Cursor.hash</li>
+  <li>TypeKind.spelling</li>
+  <li>Type.argument_types</li>
+  <li>Type.element_type (property)</li>
+  <li>Type.element_count (property)</li>
+  <li>Type.is_function_variadic</li>
+  <li>Type.is_pod</li>
+  <li>Type.get_array_element_type</li>
+  <li>Type.get_array_size</li>
+  <li>Type.__eq__ and Type.__ne__</li>
+  <li>File.from_name (static)</li>
+  <li>File.__str__ and File.__repr__</li>
+</ul>
 
 <!-- ======================================================================= 
-->
 <h2 id="additionalinfo">Additional Information</h2>
@@ -176,18 +172,6 @@ contact us via the <a href="http://lists
 mailing list</a>.</p>
 
 
-<!-- ======================================================================= 
-->
-<!-- Likely 3.1 release notes -->
-<!-- ======================================================================= 
-->
-<!--
-This is just a section to hold things that have already gotten started and
-should likely pick up proper release notes in 3.1.
-
-- C1X and C++11 atomics infrastructure and support
-- CUDA support?
-
--->
-
 </div>
 </body>
 </html>

Modified: vendor/clang/dist/lib/Basic/Version.cpp
==============================================================================
--- vendor/clang/dist/lib/Basic/Version.cpp     Wed May 23 21:38:26 2012        
(r235861)
+++ vendor/clang/dist/lib/Basic/Version.cpp     Wed May 23 21:39:13 2012        
(r235862)
@@ -32,7 +32,7 @@ std::string getClangRepositoryPath() {
 
   // If the SVN_REPOSITORY is empty, try to use the SVN keyword. This helps us
   // pick up a tag in an SVN export, for example.
-  static StringRef SVNRepository("$URL: 
http://llvm.org/svn/llvm-project/cfe/tags/RELEASE_31/final/lib/Basic/Version.cpp
 $");
+  static StringRef SVNRepository("$URL: 
http://llvm.org/svn/llvm-project/cfe/branches/release_31/lib/Basic/Version.cpp 
$");
   if (URL.empty()) {
     URL = SVNRepository.slice(SVNRepository.find(':'),
                               SVNRepository.find("/lib/Basic"));
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to