From owner-svn-src-all@freebsd.org Sat Jan 16 17:18:54 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB131A84BFC; Sat, 16 Jan 2016 17:18:54 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 924731C31; Sat, 16 Jan 2016 17:18:54 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0GHIrMt039585; Sat, 16 Jan 2016 17:18:53 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0GHIrni039581; Sat, 16 Jan 2016 17:18:53 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201601161718.u0GHIrni039581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 16 Jan 2016 17:18:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r294162 - in vendor/clang/dist: docs lib/Basic www X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2016 17:18:54 -0000 Author: dim Date: Sat Jan 16 17:18:53 2016 New Revision: 294162 URL: https://svnweb.freebsd.org/changeset/base/294162 Log: Vendor import of clang release_38 branch r257836: https://llvm.org/svn/llvm-project/cfe/branches/release_38@257836 Modified: vendor/clang/dist/docs/ReleaseNotes.rst vendor/clang/dist/lib/Basic/Version.cpp vendor/clang/dist/www/cxx_dr_status.html vendor/clang/dist/www/make_cxx_dr_status Modified: vendor/clang/dist/docs/ReleaseNotes.rst ============================================================================== --- vendor/clang/dist/docs/ReleaseNotes.rst Sat Jan 16 17:17:58 2016 (r294161) +++ vendor/clang/dist/docs/ReleaseNotes.rst Sat Jan 16 17:18:53 2016 (r294162) @@ -61,7 +61,22 @@ about them. The improvements since the 3 New Compiler Flags ------------------ -The option .... +Clang can "tune" DWARF debugging information to suit one of several different +debuggers. This fine-tuning can mean omitting DWARF features that the +debugger does not need or use, or including DWARF extensions specific to the +debugger. Clang supports tuning for three debuggers, as follows. + +- ``-ggdb`` is equivalent to ``-g`` plus tuning for the GDB debugger. For + compatibility with GCC, Clang allows this option to be followed by a + single digit from 0 to 3 indicating the debugging information "level." + For example, ``-ggdb1`` is equivalent to ``-ggdb -g1``. + +- ``-glldb`` is equivalent to ``-g`` plus tuning for the LLDB debugger. + +- ``-gsce`` is equivalent to ``-g`` plus tuning for the Sony Computer + Entertainment debugger. + +Specifying ``-g`` without a tuning option will use a target-dependent default. New Pragmas in Clang Modified: vendor/clang/dist/lib/Basic/Version.cpp ============================================================================== --- vendor/clang/dist/lib/Basic/Version.cpp Sat Jan 16 17:17:58 2016 (r294161) +++ vendor/clang/dist/lib/Basic/Version.cpp Sat Jan 16 17:18:53 2016 (r294162) @@ -36,7 +36,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. - StringRef SVNRepository("$URL: https://llvm.org/svn/llvm-project/cfe/trunk/lib/Basic/Version.cpp $"); + StringRef SVNRepository("$URL: https://llvm.org/svn/llvm-project/cfe/branches/release_38/lib/Basic/Version.cpp $"); if (URL.empty()) { URL = SVNRepository.slice(SVNRepository.find(':'), SVNRepository.find("/lib/Basic")); Modified: vendor/clang/dist/www/cxx_dr_status.html ============================================================================== --- vendor/clang/dist/www/cxx_dr_status.html Sat Jan 16 17:17:58 2016 (r294161) +++ vendor/clang/dist/www/cxx_dr_status.html Sat Jan 16 17:18:53 2016 (r294162) @@ -28,7 +28,7 @@

C++ Defect Report Support in Clang

-

Last updated: $Date: 2015-11-12 23:04:34 +0100 (Thu, 12 Nov 2015) $

+

Last updated: $Date: 2016-01-14 00:48:11 +0100 (Thu, 14 Jan 2016) $

C++ defect report implementation status

@@ -2483,7 +2483,7 @@ of class templates 407 C++11 Named class with associated typedef: two names or one? - SVN + Clang 3.8 408 Modified: vendor/clang/dist/www/make_cxx_dr_status ============================================================================== --- vendor/clang/dist/www/make_cxx_dr_status Sat Jan 16 17:17:58 2016 (r294161) +++ vendor/clang/dist/www/make_cxx_dr_status Sat Jan 16 17:18:53 2016 (r294162) @@ -102,10 +102,10 @@ def availability(issue): if status == 'unknown': avail = 'Unknown' avail_style = ' class="none"' - elif status == '3.8': + elif status == '3.9': avail = 'SVN' avail_style = ' class="svn"' - elif status in ('3.1', '3.2', '3.3', '3.4', '3.5', '3.6', '3.7'): + elif status.startswith('3.'): avail = 'Clang %s' % status avail_style = ' class="full"' elif status == 'yes':