Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Aug 2016 16:50:01 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r419781 - in head/devel: . llvm39 llvm39/files
Message-ID:  <201608071650.u77Go1Dr019010@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Sun Aug  7 16:50:01 2016
New Revision: 419781
URL: https://svnweb.freebsd.org/changeset/ports/419781

Log:
  Add a port of LLVM 3.9.0rc1.

Added:
  head/devel/llvm39/
     - copied from r419778, head/devel/llvm38/
Deleted:
  head/devel/llvm39/files/compiler-rt-patch-no-m32
  head/devel/llvm39/files/compiler-rt-patch-svn-261229
Modified:
  head/devel/Makefile
  head/devel/llvm39/Makefile
  head/devel/llvm39/distinfo
  head/devel/llvm39/pkg-plist

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Aug  7 16:27:42 2016	(r419780)
+++ head/devel/Makefile	Sun Aug  7 16:50:01 2016	(r419781)
@@ -1439,6 +1439,7 @@
     SUBDIR += llvm36
     SUBDIR += llvm37
     SUBDIR += llvm38
+    SUBDIR += llvm39
     SUBDIR += lm4tools
     SUBDIR += lmdbg
     SUBDIR += lndir

Modified: head/devel/llvm39/Makefile
==============================================================================
--- head/devel/llvm38/Makefile	Sun Aug  7 14:10:19 2016	(r419778)
+++ head/devel/llvm39/Makefile	Sun Aug  7 16:50:01 2016	(r419781)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	llvm
-DISTVERSION=	3.8.1
+DISTVERSION=	3.9.0rc1
 CATEGORIES=	devel lang
 MASTER_SITES=	http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR}
 DISTNAME=	${PORTNAME}-${DISTVERSION}.src
@@ -14,6 +14,7 @@ COMMENT=	LLVM and Clang
 BROKEN_powerpc64=	Does not build
 
 LLVM_RELEASE=	${DISTVERSION:C/rc.*//}
+LLVM_MAJOR=	${LLVM_RELEASE:C/\.[0-9]$//}
 RCDIR=		${DISTVERSION:S/${LLVM_RELEASE}//:C|(rc.*)|\1/|}
 PRE_=		${DISTVERSION:C/.*rc.*/pre-/:N*[0-9]*}
 LLVM_SUFFIX=	${DISTVERSION:R:S/.//}
@@ -83,7 +84,7 @@ OPTIONS_SUB=	yes
 
 DOCS_BUILD_DEPENDS=		sphinx-build:textproc/py-sphinx
 
-PLIST_SUB+=	LLVM_RELEASE=${LLVM_RELEASE}
+PLIST_SUB+=	LLVM_RELEASE=${LLVM_RELEASE} LLVM_MAJOR=${LLVM_MAJOR}
 
 COMMANDS=	bugpoint \
 		llc \
@@ -128,6 +129,8 @@ EXTRAS_COMMANDS+= \
 		clang-tidy \
 		modularize
 EXTRAS_LIBS=	libclangApplyReplacements \
+		libclangIncludeFixer \
+		libclangRename \
 		libclangQuery \
 		libclangRename \
 		libclangTidy \
@@ -136,6 +139,7 @@ EXTRAS_LIBS=	libclangApplyReplacements \
 		libclangTidyMiscModule \
 		libclangTidyReadabilityModule \
 		libclangTidyUtils \
+		libfindAllSymbols \
 		libmodernizeCore
 EXTRAS_PATTERN=	${EXTRAS_COMMANDS:tW:C/  */|/g}|${EXTRAS_LIBS:tW:C/  */|/g}
 
@@ -158,6 +162,10 @@ MAN1SRCS+=	clang.1 \
 CLANG_PATTERN=	(c-index-test|clang|scan-|Reporter.py|ScanView.py|scanview.css|sorttable.js|startfile.py|-analyzer)
 .endif
 
+.if ${PORT_OPTIONS:MCOMPILER_RT}
+COMPILER_RT_PATTERN=	(asan_blacklist.txt|sanitizer|xray)
+.endif
+
 .if ${PORT_OPTIONS:MLIT}
 MAN1SRCS+=	lit.1 FileCheck.1
 _USES_PYTHON=	python
@@ -207,6 +215,8 @@ _COMPILER_RT_LIBS= \
 	libclang_rt.lsan-x86_64.a \
 	libclang_rt.profile-x86_64.a \
 	libclang_rt.safestack-x86_64.a \
+	libclang_rt.stats-x86_64.a \
+	libclang_rt.stats_client-x86_64.a \
 	libclang_rt.tsan-x86_64.a \
 	libclang_rt.tsan-x86_64.a.syms \
 	libclang_rt.tsan_cxx-x86_64.a \
@@ -225,11 +235,12 @@ _COMPILER_RT_LIBS+= \
 	libclang_rt.builtins-i386.a \
 	libclang_rt.profile-i386.a \
 	libclang_rt.safestack-i386.a \
+	libclang_rt.stats-i386.a \
+	libclang_rt.stats_client-i386.a \
 	libclang_rt.ubsan_standalone-i386.a \
 	libclang_rt.ubsan_standalone_cxx-i386.a
 .endif
 
-.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang
 .if ${PORT_OPTIONS:MEXTRAS}
 COMMANDS+=	${EXTRAS_COMMANDS}
 MAN1SRCS+=	extraclangtools.1
@@ -237,9 +248,13 @@ PORTDOCS+=	clang-tools
 .endif
 
 .if ${PORT_OPTIONS:MLLD}
-COMMANDS+=	lld
+COMMANDS+=	lld \
+		lld-link
 PORTDOCS+=	lld
 .endif
+
+.if ${OPSYS} == "FreeBSD" && ${COMPILER_TYPE} != clang
+BROKEN=	Working C++11 compiler and library required
 .endif
 
 .if ${PYTHON_REL} < 3400
@@ -251,30 +266,17 @@ LLDB_BUILD_DEPENDS+= \
 BROKEN=	LLDB does not build with Python 3
 .endif
 
-.if ${OPSYS} == "FreeBSD" && ${COMPILER_TYPE} != clang
-# Evil hack around gcc48 not providing a usable c++11 environment on 9.x
-PLIST_SUB:=	${PLIST_SUB:NEXTRAS=*} EXTRAS="@comment "
-PLIST_SUB:=	${PLIST_SUB:NLLD=*} LLD="@comment "
-PLIST_SUB:=	${PLIST_SUB:NLLDB=*} LLDB="@comment "
-.endif
-
 post-extract-CLANG-on:
 	${MV} ${WRKSRC_clang} ${PATCH_WRKSRC}/tools/clang
 
 post-extract-EXTRAS-on:
-.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang
 	${MV} ${WRKSRC_extras} ${PATCH_WRKSRC}/tools/clang/tools/extra
-.endif
 
 post-extract-LLD-on:
-.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang
 	${MV} ${WRKSRC_lld} ${PATCH_WRKSRC}/tools/lld
-.endif
 
 post-extract-LLDB-on:
-.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang
 	${MV} ${WRKSRC_lldb} ${PATCH_WRKSRC}/tools/lldb
-.endif
 
 post-extract-OPENMP-on:
 	${MV} ${WRKSRC_openmp} ${PATCH_WRKSRC}/tools/openmp
@@ -285,12 +287,6 @@ post-patch:
 	    -e 's|lit\.|lit${LLVM_SUFFIX}.|' \
 	    ${WRKSRC}/utils/lit/lit.py ${WRKSRC}/utils/lit/lit/*.py
 
-post-patch-COMPILER_RT-on:
-	cd ${WRKSRC_compiler_rt} && patch < ${PATCHDIR}/compiler-rt-patch-svn-261229
-.if ${ARCH} == "amd64"
-	cd ${WRKSRC_compiler_rt} && patch < ${PATCHDIR}/compiler-rt-patch-no-m32
-.endif
-
 post-build-COMPILER_RT-on:
 	${MKDIR} ${WRKDIR}/compiler-rt-build
 	cd ${WRKDIR}/compiler-rt-build && \
@@ -329,10 +325,8 @@ post-install-DOCS-off:
 .endif
 
 post-install-LLDB-on:
-.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang
 	${RM} ${STAGEDIR}${LLVM_PREFIX}/lib/python*/site-packages/lib
 	${RMDIR} ${STAGEDIR}${LLVM_PREFIX}/include/lldb/Host/windows/getopt
-.endif
 
 post-install-CLANG-on:
 	${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/clang \
@@ -342,7 +336,10 @@ post-install-CLANG-on:
 
 post-install-COMPILER_RT-on:
 	cd ${WRKDIR}/compiler-rt-build && \
-	${MAKE_ENV} ${MAKE_CMD} ${INSTALL_TARGET}
+	    ${MAKE_ENV} ${MAKE_CMD} ${INSTALL_TARGET}
+.if ${ARCH} == "amd64"
+	${RM} ${STAGEDIR}${LLVM_PREFIX}/lib/freebsd/libclang_rt*i386*
+.endif
 
 post-install-LIT-on:
 	${INSTALL_SCRIPT} ${PATCH_WRKSRC}/utils/lit/lit.py \
@@ -384,14 +381,18 @@ build-plist:
 	    ${GREP} -v '[/-]lit$$' | ${GREP} -v 'FileCheck$$' | \
 	    ${GREP} -v man/man1 | ${SED} -e 's|${STAGEDIR}${PREFIX}/||' \
 	    -e 's|${LLVM_RELEASE}|%%LLVM_RELEASE%%|' \
-	    -e 's|release.cmake|%%CMAKE_BUILD_TYPE%%.cmake|' | \
+	    -e 's|release.cmake|%%CMAKE_BUILD_TYPE%%.cmake|' \
+	    -e 's|${LLVM_RELEASE:C/\./\\./g}|%%LLVM_RELEASE%%|' \
+	    -e 's|${LLVM_MAJOR:C/\./\\./}|%%LLVM_MAJOR%%|' | \
 	    ${SORT} >> ${PLIST}.tmp
 	${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX} -type f | \
-	    ${SED} -e 's|${STAGEDIR}${PYTHON_SITELIBDIR}|%%LIT%%%%PYTHON_SITELIBDIR%%|' | \
+	    ${SED} -e 's|${STAGEDIR}${PYTHON_SITELIBDIR}|%%LIT%%%%PYTHON_SITELIBDIR%%|' \
+	    -e 's|${LLVM_RELEASE:C/\./\\./g}|%%LLVM_RELEASE%%|' \
+	    -e 's|${LLVM_MAJOR:C/\./\\./}|%%LLVM_MAJOR%%|' | \
 	    ${SORT} >> ${PLIST}.tmp
 	awk '{ \
 	    if ($$0 ~ /${CLANG_PATTERN}/ && $$0 !~ /(omp.h|${EXTRAS_PATTERN}|libclang_rt)/) {printf "%%%%CLANG%%%%"} \
-	    if ($$0 ~ /asan_blacklist.txt|sanitizer/) \
+	    if ($$0 ~ /${COMPILER_RT_PATTERN}/) \
 		{printf "%%%%COMPILER_RT%%%%"} \
 	    if ($$0 ~ /(${EXTRAS_PATTERN})/) {printf "%%%%EXTRAS%%%%"} \
 	    if ($$0 ~ /lld/ && $$0 !~ /lldb/) {printf "%%%%LLD%%%%"} \
@@ -399,7 +400,7 @@ build-plist:
 	    if ($$0 ~ /lib.*omp/) {printf "%%%%OPENMP%%%%"} \
 	    if ($$0 ~ /LLVMgold/) {printf "%%%%GOLD%%%%"} \
 	    if ($$0 !~ /libclang_rt/) {print}}' ${PLIST}.tmp >> ${PLIST}
-	${RM} -f ${PLIST}.tmp
+	${RM} ${PLIST}.tmp
 
 
 check-commands:

Modified: head/devel/llvm39/distinfo
==============================================================================
--- head/devel/llvm38/distinfo	Sun Aug  7 14:10:19 2016	(r419778)
+++ head/devel/llvm39/distinfo	Sun Aug  7 16:50:01 2016	(r419781)
@@ -1,15 +1,15 @@
-TIMESTAMP = 1468531320
-SHA256 (llvm-3.8.1.src.tar.xz) = 6e82ce4adb54ff3afc18053d6981b6aed1406751b8742582ed50f04b5ab475f9
-SIZE (llvm-3.8.1.src.tar.xz) = 16551472
-SHA256 (cfe-3.8.1.src.tar.xz) = 4cd3836dfb4b88b597e075341cae86d61c63ce3963e45c7fe6a8bf59bb382cdf
-SIZE (cfe-3.8.1.src.tar.xz) = 9605548
-SHA256 (compiler-rt-3.8.1.src.tar.xz) = 0df011dae14d8700499dfc961602ee0a9572fef926202ade5dcdfe7858411e5c
-SIZE (compiler-rt-3.8.1.src.tar.xz) = 1263312
-SHA256 (clang-tools-extra-3.8.1.src.tar.xz) = 664a5c60220de9c290bf2a5b03d902ab731a4f95fe73a00856175ead494ec396
-SIZE (clang-tools-extra-3.8.1.src.tar.xz) = 334768
-SHA256 (lld-3.8.1.src.tar.xz) = 2bd9be8bb18d82f7f59e31ea33b4e58387dbdef0bc11d5c9fcd5ce9a4b16dc00
-SIZE (lld-3.8.1.src.tar.xz) = 632288
-SHA256 (lldb-3.8.1.src.tar.xz) = 349148116a47e39dcb5d5042f10d8a6357d2c865034563283ca512f81cdce8a3
-SIZE (lldb-3.8.1.src.tar.xz) = 10928220
-SHA256 (openmp-3.8.1.src.tar.xz) = 68fcde6ef34e0275884a2de3450a31e931caf1d6fda8606ef14f89c4123617dc
-SIZE (openmp-3.8.1.src.tar.xz) = 2009572
+TIMESTAMP = 1470582750
+SHA256 (llvm-3.9.0rc1.src.tar.xz) = 2b11e3e2221dc2844d341597abff9d1218caf9649f0e7cc87a1d6f1f92b9aa35
+SIZE (llvm-3.9.0rc1.src.tar.xz) = 18221308
+SHA256 (cfe-3.9.0rc1.src.tar.xz) = 56adfce2c14e0b90fade6ce4349e90120f12ea650832e80b95f4cb3b59510a1d
+SIZE (cfe-3.9.0rc1.src.tar.xz) = 10388152
+SHA256 (compiler-rt-3.9.0rc1.src.tar.xz) = d5cd31bf622e2b056dd5c0bddc31f167ee39816701a2d54c7ca5ec9d0fd162f4
+SIZE (compiler-rt-3.9.0rc1.src.tar.xz) = 1378212
+SHA256 (clang-tools-extra-3.9.0rc1.src.tar.xz) = d952e9e3e25e129e4e3f53ce15d8bbe4f83435cc1d52616c2be527e9e80485ad
+SIZE (clang-tools-extra-3.9.0rc1.src.tar.xz) = 454612
+SHA256 (lld-3.9.0rc1.src.tar.xz) = d6d3dea1455ead52c17766d8560af11f3b9a712258f0a4eb7f3aaa9629225ff5
+SIZE (lld-3.9.0rc1.src.tar.xz) = 499040
+SHA256 (lldb-3.9.0rc1.src.tar.xz) = f2fb65327737d8384d6479cb404b0d6f53c5b07495d53d62eaa0a89db2207550
+SIZE (lldb-3.9.0rc1.src.tar.xz) = 13753192
+SHA256 (openmp-3.9.0rc1.src.tar.xz) = 19ef3527c651a727aa0efca2049a021cf31165a1d990a308fe71a1b7df93fd64
+SIZE (openmp-3.9.0rc1.src.tar.xz) = 2257092

Modified: head/devel/llvm39/pkg-plist
==============================================================================
--- head/devel/llvm38/pkg-plist	Sun Aug  7 14:10:19 2016	(r419778)
+++ head/devel/llvm39/pkg-plist	Sun Aug  7 16:50:01 2016	(r419781)
@@ -1,2278 +1,2480 @@
-bin/bugpoint38
-bin/llc38
-bin/lli38
-bin/llvm-ar38
-bin/llvm-as38
-bin/llvm-bcanalyzer38
-bin/llvm-config38
-bin/llvm-cov38
-bin/llvm-diff38
-bin/llvm-dis38
-bin/llvm-dwarfdump38
-bin/llvm-extract38
-bin/llvm-link38
-bin/llvm-mc38
-bin/llvm-mcmarkup38
-bin/llvm-nm38
-bin/llvm-objdump38
-bin/llvm-profdata38
-bin/llvm-ranlib38
-bin/llvm-readobj38
-bin/llvm-rtdyld38
-bin/llvm-size38
-bin/llvm-split38
-bin/llvm-stress38
-bin/llvm-symbolizer38
-bin/llvm-tblgen38
-bin/macho-dump38
-bin/opt38
-%%CLANG%%bin/clang38
-%%CLANG%%bin/clang++38
-%%CLANG%%bin/clang-check38
-%%CLANG%%bin/clang-cpp38
-%%CLANG%%bin/clang-format38
-%%CLANG%%bin/clang-tblgen38
-%%CLANG%%bin/scan-build38
-%%CLANG%%bin/scan-view38
-%%LLDB%%bin/argdumper38
-%%LLDB%%bin/lldb38
-%%LLDB%%bin/lldb-mi38
-%%LLDB%%bin/lldb-server38
-%%EXTRAS%%bin/clang-apply-replacements38
-%%EXTRAS%%bin/clang-modernize38
-%%EXTRAS%%bin/clang-query38
-%%EXTRAS%%bin/clang-rename38
-%%EXTRAS%%bin/clang-tidy38
-%%EXTRAS%%bin/modularize38
-%%LLD%%bin/lld38
-%%LIT%%bin/lit38
-%%LIT%%llvm38/bin/lit
-%%LIT%%bin/llvm-lit38
-%%LIT%%llvm38/bin/llvm-lit
-%%LIT%%bin/FileCheck38
-%%LIT%%llvm38/bin/FileCheck
-%%COMPILER_RT%%llvm38/asan_blacklist.txt
-llvm38/bin/bugpoint
-%%CLANG%%llvm38/bin/c-index-test
-%%CLANG%%llvm38/bin/clang
-%%CLANG%%llvm38/bin/clang++
-%%CLANG%%llvm38/bin/clang-3.8
-%%EXTRAS%%llvm38/bin/clang-apply-replacements
-%%CLANG%%llvm38/bin/clang-check
-%%CLANG%%llvm38/bin/clang-cl
-%%CLANG%%llvm38/bin/clang-cpp
-%%CLANG%%llvm38/bin/clang-format
-%%EXTRAS%%llvm38/bin/clang-query
-%%EXTRAS%%llvm38/bin/clang-rename
-%%CLANG%%llvm38/bin/clang-tblgen
-%%EXTRAS%%llvm38/bin/clang-tidy
-%%CLANG%%llvm38/bin/git-clang-format
-%%LLD%%llvm38/bin/ld.lld
-llvm38/bin/llc
-%%LLD%%llvm38/bin/lld
-%%LLD%%llvm38/bin/lld-link
-%%LLDB%%llvm38/bin/lldb
-%%LLDB%%llvm38/bin/lldb-%%LLVM_RELEASE%%
-%%LLDB%%llvm38/bin/lldb-argdumper
-%%LLDB%%llvm38/bin/lldb-mi
-%%LLDB%%llvm38/bin/lldb-mi-%%LLVM_RELEASE%%
-%%LLDB%%llvm38/bin/lldb-server
-%%LLDB%%llvm38/bin/lldb-server-%%LLVM_RELEASE%%
-llvm38/bin/lli
-llvm38/bin/llvm-ar
-llvm38/bin/llvm-as
-llvm38/bin/llvm-bcanalyzer
-llvm38/bin/llvm-c-test
-llvm38/bin/llvm-config
-llvm38/bin/llvm-cov
-llvm38/bin/llvm-cxxdump
-llvm38/bin/llvm-diff
-llvm38/bin/llvm-dis
-llvm38/bin/llvm-dsymutil
-llvm38/bin/llvm-dwarfdump
-llvm38/bin/llvm-dwp
-llvm38/bin/llvm-extract
-llvm38/bin/llvm-lib
-llvm38/bin/llvm-link
-llvm38/bin/llvm-lto
-llvm38/bin/llvm-mc
-llvm38/bin/llvm-mcmarkup
-llvm38/bin/llvm-nm
-llvm38/bin/llvm-objdump
-llvm38/bin/llvm-pdbdump
-llvm38/bin/llvm-profdata
-llvm38/bin/llvm-ranlib
-llvm38/bin/llvm-readobj
-llvm38/bin/llvm-rtdyld
-llvm38/bin/llvm-size
-llvm38/bin/llvm-split
-llvm38/bin/llvm-stress
-llvm38/bin/llvm-symbolizer
-llvm38/bin/llvm-tblgen
-%%EXTRAS%%llvm38/bin/modularize
-llvm38/bin/obj2yaml
-llvm38/bin/opt
-llvm38/bin/sancov
-%%CLANG%%llvm38/bin/scan-build
-%%CLANG%%llvm38/bin/scan-view
-llvm38/bin/verify-uselistorder
-llvm38/bin/yaml2obj
-%%CLANG%%llvm38/include/clang-c/BuildSystem.h
-%%CLANG%%llvm38/include/clang-c/CXCompilationDatabase.h
-%%CLANG%%llvm38/include/clang-c/CXErrorCode.h
-%%CLANG%%llvm38/include/clang-c/CXString.h
-%%CLANG%%llvm38/include/clang-c/Documentation.h
-%%CLANG%%llvm38/include/clang-c/Index.h
-%%CLANG%%llvm38/include/clang-c/Platform.h
-%%CLANG%%llvm38/include/clang/ARCMigrate/ARCMT.h
-%%CLANG%%llvm38/include/clang/ARCMigrate/ARCMTActions.h
-%%CLANG%%llvm38/include/clang/ARCMigrate/FileRemapper.h
-%%CLANG%%llvm38/include/clang/AST/APValue.h
-%%CLANG%%llvm38/include/clang/AST/AST.h
-%%CLANG%%llvm38/include/clang/AST/ASTConsumer.h
-%%CLANG%%llvm38/include/clang/AST/ASTContext.h
-%%CLANG%%llvm38/include/clang/AST/ASTDiagnostic.h
-%%CLANG%%llvm38/include/clang/AST/ASTFwd.h
-%%CLANG%%llvm38/include/clang/AST/ASTImporter.h
-%%CLANG%%llvm38/include/clang/AST/ASTLambda.h
-%%CLANG%%llvm38/include/clang/AST/ASTMutationListener.h
-%%CLANG%%llvm38/include/clang/AST/ASTTypeTraits.h
-%%CLANG%%llvm38/include/clang/AST/ASTUnresolvedSet.h
-%%CLANG%%llvm38/include/clang/AST/ASTVector.h
-%%CLANG%%llvm38/include/clang/AST/Attr.h
-%%CLANG%%llvm38/include/clang/AST/AttrDump.inc
-%%CLANG%%llvm38/include/clang/AST/AttrImpl.inc
-%%CLANG%%llvm38/include/clang/AST/AttrIterator.h
-%%CLANG%%llvm38/include/clang/AST/AttrVisitor.inc
-%%CLANG%%llvm38/include/clang/AST/Attrs.inc
-%%CLANG%%llvm38/include/clang/AST/BaseSubobject.h
-%%CLANG%%llvm38/include/clang/AST/BuiltinTypes.def
-%%CLANG%%llvm38/include/clang/AST/CXXInheritance.h
-%%CLANG%%llvm38/include/clang/AST/CanonicalType.h
-%%CLANG%%llvm38/include/clang/AST/CharUnits.h
-%%CLANG%%llvm38/include/clang/AST/Comment.h
-%%CLANG%%llvm38/include/clang/AST/CommentBriefParser.h
-%%CLANG%%llvm38/include/clang/AST/CommentCommandInfo.inc
-%%CLANG%%llvm38/include/clang/AST/CommentCommandList.inc
-%%CLANG%%llvm38/include/clang/AST/CommentCommandTraits.h
-%%CLANG%%llvm38/include/clang/AST/CommentDiagnostic.h
-%%CLANG%%llvm38/include/clang/AST/CommentHTMLNamedCharacterReferences.inc
-%%CLANG%%llvm38/include/clang/AST/CommentHTMLTags.inc
-%%CLANG%%llvm38/include/clang/AST/CommentHTMLTagsProperties.inc
-%%CLANG%%llvm38/include/clang/AST/CommentLexer.h
-%%CLANG%%llvm38/include/clang/AST/CommentNodes.inc
-%%CLANG%%llvm38/include/clang/AST/CommentParser.h
-%%CLANG%%llvm38/include/clang/AST/CommentSema.h
-%%CLANG%%llvm38/include/clang/AST/CommentVisitor.h
-%%CLANG%%llvm38/include/clang/AST/Decl.h
-%%CLANG%%llvm38/include/clang/AST/DeclAccessPair.h
-%%CLANG%%llvm38/include/clang/AST/DeclBase.h
-%%CLANG%%llvm38/include/clang/AST/DeclCXX.h
-%%CLANG%%llvm38/include/clang/AST/DeclContextInternals.h
-%%CLANG%%llvm38/include/clang/AST/DeclFriend.h
-%%CLANG%%llvm38/include/clang/AST/DeclGroup.h
-%%CLANG%%llvm38/include/clang/AST/DeclLookups.h
-%%CLANG%%llvm38/include/clang/AST/DeclNodes.inc
-%%CLANG%%llvm38/include/clang/AST/DeclObjC.h
-%%CLANG%%llvm38/include/clang/AST/DeclOpenMP.h
-%%CLANG%%llvm38/include/clang/AST/DeclTemplate.h
-%%CLANG%%llvm38/include/clang/AST/DeclVisitor.h
-%%CLANG%%llvm38/include/clang/AST/DeclarationName.h
-%%CLANG%%llvm38/include/clang/AST/DependentDiagnostic.h
-%%CLANG%%llvm38/include/clang/AST/EvaluatedExprVisitor.h
-%%CLANG%%llvm38/include/clang/AST/Expr.h
-%%CLANG%%llvm38/include/clang/AST/ExprCXX.h
-%%CLANG%%llvm38/include/clang/AST/ExprObjC.h
-%%CLANG%%llvm38/include/clang/AST/ExprOpenMP.h
-%%CLANG%%llvm38/include/clang/AST/ExternalASTSource.h
-%%CLANG%%llvm38/include/clang/AST/GlobalDecl.h
-%%CLANG%%llvm38/include/clang/AST/LambdaCapture.h
-%%CLANG%%llvm38/include/clang/AST/Mangle.h
-%%CLANG%%llvm38/include/clang/AST/MangleNumberingContext.h
-%%CLANG%%llvm38/include/clang/AST/NSAPI.h
-%%CLANG%%llvm38/include/clang/AST/NestedNameSpecifier.h
-%%CLANG%%llvm38/include/clang/AST/OpenMPClause.h
-%%CLANG%%llvm38/include/clang/AST/OperationKinds.h
-%%CLANG%%llvm38/include/clang/AST/ParentMap.h
-%%CLANG%%llvm38/include/clang/AST/PrettyPrinter.h
-%%CLANG%%llvm38/include/clang/AST/RawCommentList.h
-%%CLANG%%llvm38/include/clang/AST/RecordLayout.h
-%%CLANG%%llvm38/include/clang/AST/RecursiveASTVisitor.h
-%%CLANG%%llvm38/include/clang/AST/Redeclarable.h
-%%CLANG%%llvm38/include/clang/AST/SelectorLocationsKind.h
-%%CLANG%%llvm38/include/clang/AST/Stmt.h
-%%CLANG%%llvm38/include/clang/AST/StmtCXX.h
-%%CLANG%%llvm38/include/clang/AST/StmtGraphTraits.h
-%%CLANG%%llvm38/include/clang/AST/StmtIterator.h
-%%CLANG%%llvm38/include/clang/AST/StmtNodes.inc
-%%CLANG%%llvm38/include/clang/AST/StmtObjC.h
-%%CLANG%%llvm38/include/clang/AST/StmtOpenMP.h
-%%CLANG%%llvm38/include/clang/AST/StmtVisitor.h
-%%CLANG%%llvm38/include/clang/AST/TemplateBase.h
-%%CLANG%%llvm38/include/clang/AST/TemplateName.h
-%%CLANG%%llvm38/include/clang/AST/Type.h
-%%CLANG%%llvm38/include/clang/AST/TypeLoc.h
-%%CLANG%%llvm38/include/clang/AST/TypeLocNodes.def
-%%CLANG%%llvm38/include/clang/AST/TypeLocVisitor.h
-%%CLANG%%llvm38/include/clang/AST/TypeNodes.def
-%%CLANG%%llvm38/include/clang/AST/TypeOrdering.h
-%%CLANG%%llvm38/include/clang/AST/TypeVisitor.h
-%%CLANG%%llvm38/include/clang/AST/UnresolvedSet.h
-%%CLANG%%llvm38/include/clang/AST/VTTBuilder.h
-%%CLANG%%llvm38/include/clang/AST/VTableBuilder.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/ASTMatchFinder.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/ASTMatchers.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/ASTMatchersInternal.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/ASTMatchersMacros.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/Dynamic/Diagnostics.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/Dynamic/Parser.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/Dynamic/Registry.h
-%%CLANG%%llvm38/include/clang/ASTMatchers/Dynamic/VariantValue.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/Consumed.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/Dominators.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/FormatString.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/LiveVariables.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/PostOrderCFGView.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ReachableCode.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafety.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafetyOps.def
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
-%%CLANG%%llvm38/include/clang/Analysis/Analyses/UninitializedValues.h
-%%CLANG%%llvm38/include/clang/Analysis/AnalysisContext.h
-%%CLANG%%llvm38/include/clang/Analysis/AnalysisDiagnostic.h
-%%CLANG%%llvm38/include/clang/Analysis/CFG.h
-%%CLANG%%llvm38/include/clang/Analysis/CFGStmtMap.h
-%%CLANG%%llvm38/include/clang/Analysis/CallGraph.h
-%%CLANG%%llvm38/include/clang/Analysis/CodeInjector.h
-%%CLANG%%llvm38/include/clang/Analysis/DomainSpecific/CocoaConventions.h
-%%CLANG%%llvm38/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
-%%CLANG%%llvm38/include/clang/Analysis/FlowSensitive/DataflowValues.h
-%%CLANG%%llvm38/include/clang/Analysis/ProgramPoint.h
-%%CLANG%%llvm38/include/clang/Analysis/Support/BumpVector.h
-%%CLANG%%llvm38/include/clang/Basic/ABI.h
-%%CLANG%%llvm38/include/clang/Basic/AddressSpaces.h
-%%CLANG%%llvm38/include/clang/Basic/AllDiagnostics.h
-%%CLANG%%llvm38/include/clang/Basic/AttrHasAttributeImpl.inc
-%%CLANG%%llvm38/include/clang/Basic/AttrKinds.h
-%%CLANG%%llvm38/include/clang/Basic/AttrList.inc
-%%CLANG%%llvm38/include/clang/Basic/Attributes.h
-%%CLANG%%llvm38/include/clang/Basic/Builtins.def
-%%CLANG%%llvm38/include/clang/Basic/Builtins.h
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsAArch64.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsAMDGPU.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsARM.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsHexagon.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsLe64.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsMips.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsNEON.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsNVPTX.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsPPC.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsSystemZ.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsWebAssembly.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsX86.def
-%%CLANG%%llvm38/include/clang/Basic/BuiltinsXCore.def
-%%CLANG%%llvm38/include/clang/Basic/CapturedStmt.h
-%%CLANG%%llvm38/include/clang/Basic/CharInfo.h
-%%CLANG%%llvm38/include/clang/Basic/CommentOptions.h
-%%CLANG%%llvm38/include/clang/Basic/Diagnostic.h
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticASTKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticAnalysisKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticCategories.h
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticCommentKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticCommonKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticDriverKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticFrontendKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticGroups.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticIDs.h
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticIndexName.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticLexKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticOptions.def
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticOptions.h
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticParseKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticSemaKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/DiagnosticSerializationKinds.inc
-%%CLANG%%llvm38/include/clang/Basic/ExceptionSpecificationType.h
-%%CLANG%%llvm38/include/clang/Basic/ExpressionTraits.h
-%%CLANG%%llvm38/include/clang/Basic/FileManager.h
-%%CLANG%%llvm38/include/clang/Basic/FileSystemOptions.h
-%%CLANG%%llvm38/include/clang/Basic/FileSystemStatCache.h
-%%CLANG%%llvm38/include/clang/Basic/IdentifierTable.h
-%%CLANG%%llvm38/include/clang/Basic/LLVM.h
-%%CLANG%%llvm38/include/clang/Basic/Lambda.h
-%%CLANG%%llvm38/include/clang/Basic/LangOptions.def
-%%CLANG%%llvm38/include/clang/Basic/LangOptions.h
-%%CLANG%%llvm38/include/clang/Basic/Linkage.h
-%%CLANG%%llvm38/include/clang/Basic/MacroBuilder.h
-%%CLANG%%llvm38/include/clang/Basic/Module.h
-%%CLANG%%llvm38/include/clang/Basic/ObjCRuntime.h
-%%CLANG%%llvm38/include/clang/Basic/OpenCLExtensions.def
-%%CLANG%%llvm38/include/clang/Basic/OpenMPKinds.def
-%%CLANG%%llvm38/include/clang/Basic/OpenMPKinds.h
-%%CLANG%%llvm38/include/clang/Basic/OperatorKinds.def
-%%CLANG%%llvm38/include/clang/Basic/OperatorKinds.h
-%%CLANG%%llvm38/include/clang/Basic/OperatorPrecedence.h
-%%CLANG%%llvm38/include/clang/Basic/PartialDiagnostic.h
-%%CLANG%%llvm38/include/clang/Basic/PlistSupport.h
-%%CLANG%%llvm38/include/clang/Basic/PrettyStackTrace.h
-%%CLANG%%llvm38/include/clang/Basic/SanitizerBlacklist.h
-%%CLANG%%llvm38/include/clang/Basic/Sanitizers.def
-%%CLANG%%llvm38/include/clang/Basic/Sanitizers.h
-%%CLANG%%llvm38/include/clang/Basic/SourceLocation.h
-%%CLANG%%llvm38/include/clang/Basic/SourceManager.h
-%%CLANG%%llvm38/include/clang/Basic/SourceManagerInternals.h
-%%CLANG%%llvm38/include/clang/Basic/Specifiers.h
-%%CLANG%%llvm38/include/clang/Basic/TargetBuiltins.h
-%%CLANG%%llvm38/include/clang/Basic/TargetCXXABI.h
-%%CLANG%%llvm38/include/clang/Basic/TargetInfo.h
-%%CLANG%%llvm38/include/clang/Basic/TargetOptions.h
-%%CLANG%%llvm38/include/clang/Basic/TemplateKinds.h
-%%CLANG%%llvm38/include/clang/Basic/TokenKinds.def
-%%CLANG%%llvm38/include/clang/Basic/TokenKinds.h
-%%CLANG%%llvm38/include/clang/Basic/TypeTraits.h
-%%CLANG%%llvm38/include/clang/Basic/Version.h
-%%CLANG%%llvm38/include/clang/Basic/Version.inc
-%%CLANG%%llvm38/include/clang/Basic/VersionTuple.h
-%%CLANG%%llvm38/include/clang/Basic/VirtualFileSystem.h
-%%CLANG%%llvm38/include/clang/Basic/Visibility.h
-%%CLANG%%llvm38/include/clang/Basic/arm_neon.inc
-%%CLANG%%llvm38/include/clang/CodeGen/BackendUtil.h
-%%CLANG%%llvm38/include/clang/CodeGen/CGFunctionInfo.h
-%%CLANG%%llvm38/include/clang/CodeGen/CodeGenABITypes.h
-%%CLANG%%llvm38/include/clang/CodeGen/CodeGenAction.h
-%%CLANG%%llvm38/include/clang/CodeGen/ModuleBuilder.h
-%%CLANG%%llvm38/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
-%%CLANG%%llvm38/include/clang/Config/config.h
-%%CLANG%%llvm38/include/clang/Driver/Action.h
-%%CLANG%%llvm38/include/clang/Driver/Compilation.h
-%%CLANG%%llvm38/include/clang/Driver/Driver.h
-%%CLANG%%llvm38/include/clang/Driver/DriverDiagnostic.h
-%%CLANG%%llvm38/include/clang/Driver/Job.h
-%%CLANG%%llvm38/include/clang/Driver/Multilib.h
-%%CLANG%%llvm38/include/clang/Driver/Options.h
-%%CLANG%%llvm38/include/clang/Driver/Options.inc
-%%CLANG%%llvm38/include/clang/Driver/Phases.h
-%%CLANG%%llvm38/include/clang/Driver/SanitizerArgs.h
-%%CLANG%%llvm38/include/clang/Driver/Tool.h
-%%CLANG%%llvm38/include/clang/Driver/ToolChain.h
-%%CLANG%%llvm38/include/clang/Driver/Types.def
-%%CLANG%%llvm38/include/clang/Driver/Types.h
-%%CLANG%%llvm38/include/clang/Driver/Util.h
-%%CLANG%%llvm38/include/clang/Edit/Commit.h
-%%CLANG%%llvm38/include/clang/Edit/EditedSource.h
-%%CLANG%%llvm38/include/clang/Edit/EditsReceiver.h
-%%CLANG%%llvm38/include/clang/Edit/FileOffset.h
-%%CLANG%%llvm38/include/clang/Edit/Rewriters.h
-%%CLANG%%llvm38/include/clang/Format/Format.h
-%%CLANG%%llvm38/include/clang/Frontend/ASTConsumers.h
-%%CLANG%%llvm38/include/clang/Frontend/ASTUnit.h
-%%CLANG%%llvm38/include/clang/Frontend/ChainedDiagnosticConsumer.h
-%%CLANG%%llvm38/include/clang/Frontend/CodeGenOptions.def
-%%CLANG%%llvm38/include/clang/Frontend/CodeGenOptions.h
-%%CLANG%%llvm38/include/clang/Frontend/CommandLineSourceLoc.h
-%%CLANG%%llvm38/include/clang/Frontend/CompilerInstance.h
-%%CLANG%%llvm38/include/clang/Frontend/CompilerInvocation.h
-%%CLANG%%llvm38/include/clang/Frontend/DependencyOutputOptions.h
-%%CLANG%%llvm38/include/clang/Frontend/DiagnosticRenderer.h
-%%CLANG%%llvm38/include/clang/Frontend/FrontendAction.h
-%%CLANG%%llvm38/include/clang/Frontend/FrontendActions.h
-%%CLANG%%llvm38/include/clang/Frontend/FrontendDiagnostic.h
-%%CLANG%%llvm38/include/clang/Frontend/FrontendOptions.h
-%%CLANG%%llvm38/include/clang/Frontend/FrontendPluginRegistry.h
-%%CLANG%%llvm38/include/clang/Frontend/LangStandard.h
-%%CLANG%%llvm38/include/clang/Frontend/LangStandards.def
-%%CLANG%%llvm38/include/clang/Frontend/LayoutOverrideSource.h
-%%CLANG%%llvm38/include/clang/Frontend/LogDiagnosticPrinter.h
-%%CLANG%%llvm38/include/clang/Frontend/MigratorOptions.h
-%%CLANG%%llvm38/include/clang/Frontend/MultiplexConsumer.h
-%%CLANG%%llvm38/include/clang/Frontend/PCHContainerOperations.h
-%%CLANG%%llvm38/include/clang/Frontend/PreprocessorOutputOptions.h
-%%CLANG%%llvm38/include/clang/Frontend/SerializedDiagnosticPrinter.h
-%%CLANG%%llvm38/include/clang/Frontend/SerializedDiagnosticReader.h
-%%CLANG%%llvm38/include/clang/Frontend/SerializedDiagnostics.h
-%%CLANG%%llvm38/include/clang/Frontend/TextDiagnostic.h
-%%CLANG%%llvm38/include/clang/Frontend/TextDiagnosticBuffer.h
-%%CLANG%%llvm38/include/clang/Frontend/TextDiagnosticPrinter.h
-%%CLANG%%llvm38/include/clang/Frontend/Utils.h
-%%CLANG%%llvm38/include/clang/Frontend/VerifyDiagnosticConsumer.h
-%%CLANG%%llvm38/include/clang/FrontendTool/Utils.h
-%%CLANG%%llvm38/include/clang/Index/CommentToXML.h
-%%CLANG%%llvm38/include/clang/Index/USRGeneration.h
-%%CLANG%%llvm38/include/clang/Lex/CodeCompletionHandler.h
-%%CLANG%%llvm38/include/clang/Lex/DirectoryLookup.h
-%%CLANG%%llvm38/include/clang/Lex/ExternalPreprocessorSource.h
-%%CLANG%%llvm38/include/clang/Lex/HeaderMap.h
-%%CLANG%%llvm38/include/clang/Lex/HeaderSearch.h
-%%CLANG%%llvm38/include/clang/Lex/HeaderSearchOptions.h
-%%CLANG%%llvm38/include/clang/Lex/LexDiagnostic.h
-%%CLANG%%llvm38/include/clang/Lex/Lexer.h
-%%CLANG%%llvm38/include/clang/Lex/LiteralSupport.h
-%%CLANG%%llvm38/include/clang/Lex/MacroArgs.h
-%%CLANG%%llvm38/include/clang/Lex/MacroInfo.h
-%%CLANG%%llvm38/include/clang/Lex/ModuleLoader.h
-%%CLANG%%llvm38/include/clang/Lex/ModuleMap.h
-%%CLANG%%llvm38/include/clang/Lex/MultipleIncludeOpt.h
-%%CLANG%%llvm38/include/clang/Lex/PPCallbacks.h
-%%CLANG%%llvm38/include/clang/Lex/PPConditionalDirectiveRecord.h
-%%CLANG%%llvm38/include/clang/Lex/PTHLexer.h
-%%CLANG%%llvm38/include/clang/Lex/PTHManager.h
-%%CLANG%%llvm38/include/clang/Lex/Pragma.h
-%%CLANG%%llvm38/include/clang/Lex/PreprocessingRecord.h
-%%CLANG%%llvm38/include/clang/Lex/Preprocessor.h
-%%CLANG%%llvm38/include/clang/Lex/PreprocessorLexer.h
-%%CLANG%%llvm38/include/clang/Lex/PreprocessorOptions.h
-%%CLANG%%llvm38/include/clang/Lex/ScratchBuffer.h
-%%CLANG%%llvm38/include/clang/Lex/Token.h
-%%CLANG%%llvm38/include/clang/Lex/TokenConcatenation.h
-%%CLANG%%llvm38/include/clang/Lex/TokenLexer.h
-%%CLANG%%llvm38/include/clang/Parse/AttrParserStringSwitches.inc
-%%CLANG%%llvm38/include/clang/Parse/ParseAST.h
-%%CLANG%%llvm38/include/clang/Parse/ParseDiagnostic.h
-%%CLANG%%llvm38/include/clang/Parse/Parser.h
-%%CLANG%%llvm38/include/clang/Rewrite/Core/DeltaTree.h
-%%CLANG%%llvm38/include/clang/Rewrite/Core/HTMLRewrite.h
-%%CLANG%%llvm38/include/clang/Rewrite/Core/RewriteBuffer.h
-%%CLANG%%llvm38/include/clang/Rewrite/Core/RewriteRope.h
-%%CLANG%%llvm38/include/clang/Rewrite/Core/Rewriter.h
-%%CLANG%%llvm38/include/clang/Rewrite/Core/TokenRewriter.h
-%%CLANG%%llvm38/include/clang/Rewrite/Frontend/ASTConsumers.h
-%%CLANG%%llvm38/include/clang/Rewrite/Frontend/FixItRewriter.h
-%%CLANG%%llvm38/include/clang/Rewrite/Frontend/FrontendActions.h
-%%CLANG%%llvm38/include/clang/Rewrite/Frontend/Rewriters.h
-%%CLANG%%llvm38/include/clang/Sema/AnalysisBasedWarnings.h
-%%CLANG%%llvm38/include/clang/Sema/AttrParsedAttrImpl.inc
-%%CLANG%%llvm38/include/clang/Sema/AttrParsedAttrKinds.inc
-%%CLANG%%llvm38/include/clang/Sema/AttrParsedAttrList.inc
-%%CLANG%%llvm38/include/clang/Sema/AttrSpellingListIndex.inc
-%%CLANG%%llvm38/include/clang/Sema/AttrTemplateInstantiate.inc
-%%CLANG%%llvm38/include/clang/Sema/AttributeList.h
-%%CLANG%%llvm38/include/clang/Sema/CXXFieldCollector.h
-%%CLANG%%llvm38/include/clang/Sema/CodeCompleteConsumer.h
-%%CLANG%%llvm38/include/clang/Sema/CodeCompleteOptions.h
-%%CLANG%%llvm38/include/clang/Sema/DeclSpec.h
-%%CLANG%%llvm38/include/clang/Sema/DelayedDiagnostic.h
-%%CLANG%%llvm38/include/clang/Sema/Designator.h
-%%CLANG%%llvm38/include/clang/Sema/ExternalSemaSource.h
-%%CLANG%%llvm38/include/clang/Sema/IdentifierResolver.h
-%%CLANG%%llvm38/include/clang/Sema/Initialization.h
-%%CLANG%%llvm38/include/clang/Sema/LocInfoType.h
-%%CLANG%%llvm38/include/clang/Sema/Lookup.h
-%%CLANG%%llvm38/include/clang/Sema/LoopHint.h
-%%CLANG%%llvm38/include/clang/Sema/MultiplexExternalSemaSource.h
-%%CLANG%%llvm38/include/clang/Sema/ObjCMethodList.h
-%%CLANG%%llvm38/include/clang/Sema/Overload.h
-%%CLANG%%llvm38/include/clang/Sema/Ownership.h
-%%CLANG%%llvm38/include/clang/Sema/ParsedTemplate.h
-%%CLANG%%llvm38/include/clang/Sema/PrettyDeclStackTrace.h
-%%CLANG%%llvm38/include/clang/Sema/Scope.h
-%%CLANG%%llvm38/include/clang/Sema/ScopeInfo.h
-%%CLANG%%llvm38/include/clang/Sema/Sema.h
-%%CLANG%%llvm38/include/clang/Sema/SemaConsumer.h
-%%CLANG%%llvm38/include/clang/Sema/SemaDiagnostic.h
-%%CLANG%%llvm38/include/clang/Sema/SemaFixItUtils.h
-%%CLANG%%llvm38/include/clang/Sema/SemaInternal.h
-%%CLANG%%llvm38/include/clang/Sema/SemaLambda.h
-%%CLANG%%llvm38/include/clang/Sema/Template.h
-%%CLANG%%llvm38/include/clang/Sema/TemplateDeduction.h
-%%CLANG%%llvm38/include/clang/Sema/TypoCorrection.h
-%%CLANG%%llvm38/include/clang/Sema/Weak.h
-%%CLANG%%llvm38/include/clang/Serialization/ASTBitCodes.h
-%%CLANG%%llvm38/include/clang/Serialization/ASTDeserializationListener.h
-%%CLANG%%llvm38/include/clang/Serialization/ASTReader.h
-%%CLANG%%llvm38/include/clang/Serialization/ASTWriter.h
-%%CLANG%%llvm38/include/clang/Serialization/AttrPCHRead.inc
-%%CLANG%%llvm38/include/clang/Serialization/AttrPCHWrite.inc
-%%CLANG%%llvm38/include/clang/Serialization/ContinuousRangeMap.h
-%%CLANG%%llvm38/include/clang/Serialization/GlobalModuleIndex.h
-%%CLANG%%llvm38/include/clang/Serialization/Module.h
-%%CLANG%%llvm38/include/clang/Serialization/ModuleFileExtension.h
-%%CLANG%%llvm38/include/clang/Serialization/ModuleManager.h
-%%CLANG%%llvm38/include/clang/Serialization/SerializationDiagnostic.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/Analyses.def
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/Checker.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/CheckerManager.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/IssueHash.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
-%%CLANG%%llvm38/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
-%%CLANG%%llvm38/include/clang/Tooling/ArgumentsAdjusters.h
-%%CLANG%%llvm38/include/clang/Tooling/CommonOptionsParser.h
-%%CLANG%%llvm38/include/clang/Tooling/CompilationDatabase.h
-%%CLANG%%llvm38/include/clang/Tooling/CompilationDatabasePluginRegistry.h
-%%CLANG%%llvm38/include/clang/Tooling/Core/Lookup.h
-%%CLANG%%llvm38/include/clang/Tooling/Core/Replacement.h
-%%CLANG%%llvm38/include/clang/Tooling/FileMatchTrie.h
-%%CLANG%%llvm38/include/clang/Tooling/JSONCompilationDatabase.h
-%%CLANG%%llvm38/include/clang/Tooling/Refactoring.h
-%%CLANG%%llvm38/include/clang/Tooling/RefactoringCallbacks.h
-%%CLANG%%llvm38/include/clang/Tooling/ReplacementsYaml.h
-%%CLANG%%llvm38/include/clang/Tooling/Tooling.h
-%%LLD%%llvm38/include/lld/Config/Version.h
-%%LLD%%llvm38/include/lld/Core/AbsoluteAtom.h
-%%LLD%%llvm38/include/lld/Core/Alias.h
-%%LLD%%llvm38/include/lld/Core/ArchiveLibraryFile.h
-%%LLD%%llvm38/include/lld/Core/Atom.h
-%%LLD%%llvm38/include/lld/Core/DefinedAtom.h
-%%LLD%%llvm38/include/lld/Core/Error.h
-%%LLD%%llvm38/include/lld/Core/File.h
-%%LLD%%llvm38/include/lld/Core/Instrumentation.h
-%%LLD%%llvm38/include/lld/Core/LLVM.h
-%%LLD%%llvm38/include/lld/Core/LinkingContext.h
-%%LLD%%llvm38/include/lld/Core/Node.h
-%%LLD%%llvm38/include/lld/Core/Parallel.h
-%%LLD%%llvm38/include/lld/Core/Pass.h
-%%LLD%%llvm38/include/lld/Core/PassManager.h
-%%LLD%%llvm38/include/lld/Core/Reader.h
-%%LLD%%llvm38/include/lld/Core/Reference.h
-%%LLD%%llvm38/include/lld/Core/Resolver.h
-%%LLD%%llvm38/include/lld/Core/STDExtras.h
-%%LLD%%llvm38/include/lld/Core/SharedLibraryAtom.h
-%%LLD%%llvm38/include/lld/Core/SharedLibraryFile.h
-%%LLD%%llvm38/include/lld/Core/Simple.h
-%%LLD%%llvm38/include/lld/Core/SymbolTable.h
-%%LLD%%llvm38/include/lld/Core/UndefinedAtom.h
-%%LLD%%llvm38/include/lld/Core/Writer.h
-%%LLD%%llvm38/include/lld/Core/range.h
-%%LLD%%llvm38/include/lld/Driver/Driver.h
-%%LLD%%llvm38/include/lld/ReaderWriter/AtomLayout.h
-%%LLD%%llvm38/include/lld/ReaderWriter/CoreLinkingContext.h
-%%LLD%%llvm38/include/lld/ReaderWriter/ELFLinkingContext.h
-%%LLD%%llvm38/include/lld/ReaderWriter/LinkerScript.h
-%%LLD%%llvm38/include/lld/ReaderWriter/MachOLinkingContext.h
-%%LLD%%llvm38/include/lld/ReaderWriter/YamlContext.h
-%%LLDB%%llvm38/include/lldb/API/LLDB.h
-%%LLDB%%llvm38/include/lldb/API/SBAddress.h
-%%LLDB%%llvm38/include/lldb/API/SBAttachInfo.h
-%%LLDB%%llvm38/include/lldb/API/SBBlock.h
-%%LLDB%%llvm38/include/lldb/API/SBBreakpoint.h
-%%LLDB%%llvm38/include/lldb/API/SBBreakpointLocation.h
-%%LLDB%%llvm38/include/lldb/API/SBBroadcaster.h
-%%LLDB%%llvm38/include/lldb/API/SBCommandInterpreter.h
-%%LLDB%%llvm38/include/lldb/API/SBCommandReturnObject.h
-%%LLDB%%llvm38/include/lldb/API/SBCommunication.h
-%%LLDB%%llvm38/include/lldb/API/SBCompileUnit.h
-%%LLDB%%llvm38/include/lldb/API/SBData.h
-%%LLDB%%llvm38/include/lldb/API/SBDebugger.h
-%%LLDB%%llvm38/include/lldb/API/SBDeclaration.h
-%%LLDB%%llvm38/include/lldb/API/SBDefines.h
-%%LLDB%%llvm38/include/lldb/API/SBError.h
-%%LLDB%%llvm38/include/lldb/API/SBEvent.h
-%%LLDB%%llvm38/include/lldb/API/SBExecutionContext.h
-%%LLDB%%llvm38/include/lldb/API/SBExpressionOptions.h
-%%LLDB%%llvm38/include/lldb/API/SBFileSpec.h
-%%LLDB%%llvm38/include/lldb/API/SBFileSpecList.h
-%%LLDB%%llvm38/include/lldb/API/SBFrame.h
-%%LLDB%%llvm38/include/lldb/API/SBFunction.h
-%%LLDB%%llvm38/include/lldb/API/SBHostOS.h
-%%LLDB%%llvm38/include/lldb/API/SBInstruction.h
-%%LLDB%%llvm38/include/lldb/API/SBInstructionList.h
-%%LLDB%%llvm38/include/lldb/API/SBLanguageRuntime.h
-%%LLDB%%llvm38/include/lldb/API/SBLaunchInfo.h
-%%LLDB%%llvm38/include/lldb/API/SBLineEntry.h
-%%LLDB%%llvm38/include/lldb/API/SBListener.h
-%%LLDB%%llvm38/include/lldb/API/SBModule.h
-%%LLDB%%llvm38/include/lldb/API/SBModuleSpec.h
-%%LLDB%%llvm38/include/lldb/API/SBPlatform.h
-%%LLDB%%llvm38/include/lldb/API/SBProcess.h
-%%LLDB%%llvm38/include/lldb/API/SBQueue.h
-%%LLDB%%llvm38/include/lldb/API/SBQueueItem.h
-%%LLDB%%llvm38/include/lldb/API/SBSection.h
-%%LLDB%%llvm38/include/lldb/API/SBSourceManager.h
-%%LLDB%%llvm38/include/lldb/API/SBStream.h
-%%LLDB%%llvm38/include/lldb/API/SBStringList.h
-%%LLDB%%llvm38/include/lldb/API/SBSymbol.h
-%%LLDB%%llvm38/include/lldb/API/SBSymbolContext.h
-%%LLDB%%llvm38/include/lldb/API/SBSymbolContextList.h
-%%LLDB%%llvm38/include/lldb/API/SBTarget.h
-%%LLDB%%llvm38/include/lldb/API/SBThread.h
-%%LLDB%%llvm38/include/lldb/API/SBThreadCollection.h
-%%LLDB%%llvm38/include/lldb/API/SBThreadPlan.h
-%%LLDB%%llvm38/include/lldb/API/SBType.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeCategory.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeEnumMember.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeFilter.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeFormat.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeNameSpecifier.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeSummary.h
-%%LLDB%%llvm38/include/lldb/API/SBTypeSynthetic.h
-%%LLDB%%llvm38/include/lldb/API/SBUnixSignals.h
-%%LLDB%%llvm38/include/lldb/API/SBValue.h
-%%LLDB%%llvm38/include/lldb/API/SBValueList.h
-%%LLDB%%llvm38/include/lldb/API/SBVariablesOptions.h
-%%LLDB%%llvm38/include/lldb/API/SBWatchpoint.h
-%%LLDB%%llvm38/include/lldb/API/SystemInitializerFull.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/Breakpoint.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointID.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointIDList.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointList.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointLocation.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointLocationCollection.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointLocationList.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointOptions.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointResolver.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointResolverAddress.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointResolverFileLine.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointResolverName.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointSite.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/BreakpointSiteList.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/Stoppoint.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/StoppointCallbackContext.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/StoppointLocation.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/Watchpoint.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/WatchpointList.h
-%%LLDB%%llvm38/include/lldb/Breakpoint/WatchpointOptions.h
-%%LLDB%%llvm38/include/lldb/Core/Address.h
-%%LLDB%%llvm38/include/lldb/Core/AddressRange.h
-%%LLDB%%llvm38/include/lldb/Core/AddressResolver.h
-%%LLDB%%llvm38/include/lldb/Core/AddressResolverFileLine.h
-%%LLDB%%llvm38/include/lldb/Core/AddressResolverName.h
-%%LLDB%%llvm38/include/lldb/Core/ArchSpec.h
-%%LLDB%%llvm38/include/lldb/Core/Baton.h
-%%LLDB%%llvm38/include/lldb/Core/Broadcaster.h
-%%LLDB%%llvm38/include/lldb/Core/ClangForward.h
-%%LLDB%%llvm38/include/lldb/Core/Communication.h
-%%LLDB%%llvm38/include/lldb/Core/Connection.h
-%%LLDB%%llvm38/include/lldb/Core/ConnectionMachPort.h
-%%LLDB%%llvm38/include/lldb/Core/ConnectionSharedMemory.h
-%%LLDB%%llvm38/include/lldb/Core/ConstString.h
-%%LLDB%%llvm38/include/lldb/Core/CxaDemangle.h
-%%LLDB%%llvm38/include/lldb/Core/DataBuffer.h
-%%LLDB%%llvm38/include/lldb/Core/DataBufferHeap.h
-%%LLDB%%llvm38/include/lldb/Core/DataBufferMemoryMap.h
-%%LLDB%%llvm38/include/lldb/Core/DataEncoder.h
-%%LLDB%%llvm38/include/lldb/Core/DataExtractor.h
-%%LLDB%%llvm38/include/lldb/Core/Debugger.h
-%%LLDB%%llvm38/include/lldb/Core/Disassembler.h
-%%LLDB%%llvm38/include/lldb/Core/EmulateInstruction.h
-%%LLDB%%llvm38/include/lldb/Core/Error.h
-%%LLDB%%llvm38/include/lldb/Core/Event.h
-%%LLDB%%llvm38/include/lldb/Core/FastDemangle.h
-%%LLDB%%llvm38/include/lldb/Core/FileLineResolver.h
-%%LLDB%%llvm38/include/lldb/Core/FileSpecList.h
-%%LLDB%%llvm38/include/lldb/Core/Flags.h
-%%LLDB%%llvm38/include/lldb/Core/FormatEntity.h
-%%LLDB%%llvm38/include/lldb/Core/History.h
-%%LLDB%%llvm38/include/lldb/Core/IOHandler.h
-%%LLDB%%llvm38/include/lldb/Core/IOStreamMacros.h
-%%LLDB%%llvm38/include/lldb/Core/Listener.h
-%%LLDB%%llvm38/include/lldb/Core/LoadedModuleInfoList.h
-%%LLDB%%llvm38/include/lldb/Core/Log.h
-%%LLDB%%llvm38/include/lldb/Core/Logging.h
-%%LLDB%%llvm38/include/lldb/Core/Mangled.h
-%%LLDB%%llvm38/include/lldb/Core/MappedHash.h
-%%LLDB%%llvm38/include/lldb/Core/Module.h
-%%LLDB%%llvm38/include/lldb/Core/ModuleChild.h
-%%LLDB%%llvm38/include/lldb/Core/ModuleList.h
-%%LLDB%%llvm38/include/lldb/Core/ModuleSpec.h
-%%LLDB%%llvm38/include/lldb/Core/Opcode.h
-%%LLDB%%llvm38/include/lldb/Core/PluginInterface.h
-%%LLDB%%llvm38/include/lldb/Core/PluginManager.h
-%%LLDB%%llvm38/include/lldb/Core/RangeMap.h
-%%LLDB%%llvm38/include/lldb/Core/RegisterValue.h
-%%LLDB%%llvm38/include/lldb/Core/RegularExpression.h
-%%LLDB%%llvm38/include/lldb/Core/STLUtils.h
-%%LLDB%%llvm38/include/lldb/Core/Scalar.h
-%%LLDB%%llvm38/include/lldb/Core/SearchFilter.h
-%%LLDB%%llvm38/include/lldb/Core/Section.h
-%%LLDB%%llvm38/include/lldb/Core/SourceManager.h
-%%LLDB%%llvm38/include/lldb/Core/State.h
-%%LLDB%%llvm38/include/lldb/Core/Stream.h
-%%LLDB%%llvm38/include/lldb/Core/StreamAsynchronousIO.h
-%%LLDB%%llvm38/include/lldb/Core/StreamBuffer.h
-%%LLDB%%llvm38/include/lldb/Core/StreamCallback.h
-%%LLDB%%llvm38/include/lldb/Core/StreamFile.h
-%%LLDB%%llvm38/include/lldb/Core/StreamGDBRemote.h
-%%LLDB%%llvm38/include/lldb/Core/StreamString.h
-%%LLDB%%llvm38/include/lldb/Core/StreamTee.h
-%%LLDB%%llvm38/include/lldb/Core/StringList.h
-%%LLDB%%llvm38/include/lldb/Core/StructuredData.h
-%%LLDB%%llvm38/include/lldb/Core/ThreadSafeDenseMap.h
-%%LLDB%%llvm38/include/lldb/Core/ThreadSafeDenseSet.h
-%%LLDB%%llvm38/include/lldb/Core/ThreadSafeSTLMap.h
-%%LLDB%%llvm38/include/lldb/Core/ThreadSafeValue.h
-%%LLDB%%llvm38/include/lldb/Core/Timer.h
-%%LLDB%%llvm38/include/lldb/Core/UUID.h
-%%LLDB%%llvm38/include/lldb/Core/UniqueCStringMap.h
-%%LLDB%%llvm38/include/lldb/Core/UserID.h
-%%LLDB%%llvm38/include/lldb/Core/UserSettingsController.h
-%%LLDB%%llvm38/include/lldb/Core/VMRange.h
-%%LLDB%%llvm38/include/lldb/Core/Value.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObject.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectCast.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectChild.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectConstResult.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectConstResultCast.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectConstResultChild.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectConstResultImpl.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectDynamicValue.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectList.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectMemory.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectRegister.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectSyntheticFilter.h
-%%LLDB%%llvm38/include/lldb/Core/ValueObjectVariable.h
-%%LLDB%%llvm38/include/lldb/Core/dwarf.h

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608071650.u77Go1Dr019010>