From owner-svn-src-projects@freebsd.org Thu May 4 21:04:39 2017 Return-Path: Delivered-To: svn-src-projects@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 9C606D5EBA8 for ; Thu, 4 May 2017 21:04:39 +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 51BDC9F1; Thu, 4 May 2017 21:04:39 +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 v44L4c0A064518; Thu, 4 May 2017 21:04:38 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v44L4cNn064517; Thu, 4 May 2017 21:04:38 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201705042104.v44L4cNn064517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 4 May 2017 21:04:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r317807 - projects/clang500-import/lib/clang/libllvm X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 May 2017 21:04:39 -0000 Author: dim Date: Thu May 4 21:04:38 2017 New Revision: 317807 URL: https://svnweb.freebsd.org/changeset/base/317807 Log: Some more files in libllvm moved around. These only apply for WITH_CLANG_EXTRAS. Modified: projects/clang500-import/lib/clang/libllvm/Makefile Modified: projects/clang500-import/lib/clang/libllvm/Makefile ============================================================================== --- projects/clang500-import/lib/clang/libllvm/Makefile Thu May 4 20:42:31 2017 (r317806) +++ projects/clang500-import/lib/clang/libllvm/Makefile Thu May 4 21:04:38 2017 (r317807) @@ -324,6 +324,7 @@ SRCS_EXT+= DebugInfo/CodeView/ModuleDebu SRCS_EXT+= DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp SRCS_EXT+= DebugInfo/CodeView/ModuleDebugLineFragment.cpp SRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp +SRCS_EXT+= DebugInfo/CodeView/StringTable.cpp SRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp SRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp SRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp @@ -353,6 +354,7 @@ SRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex SRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp SRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp SRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp +SRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp SRCS_MIW+= DebugInfo/DWARF/SyntaxHighlighting.cpp SRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp SRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp @@ -382,8 +384,8 @@ SRCS_EXT+= DebugInfo/PDB/Native/PDBFile. SRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp SRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp SRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp -SRCS_EXT+= DebugInfo/PDB/Native/StringTable.cpp -SRCS_EXT+= DebugInfo/PDB/Native/StringTableBuilder.cpp +SRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp +SRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp SRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp SRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp SRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp