[Midnightbsd-cvs] mports [15676] trunk/devel/llvm-devel: update llvm devel port based on FreeBSD version

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Dec 18 23:27:21 EST 2013


Revision: 15676
          http://svnweb.midnightbsd.org/mports/?rev=15676
Author:   laffer1
Date:     2013-12-18 23:27:20 -0500 (Wed, 18 Dec 2013)
Log Message:
-----------
update llvm devel port based on FreeBSD version

Modified Paths:
--------------
    trunk/devel/llvm-devel/Makefile
    trunk/devel/llvm-devel/Makefile.svn_rev
    trunk/devel/llvm-devel/distinfo
    trunk/devel/llvm-devel/pkg-descr
    trunk/devel/llvm-devel/pkg-plist

Modified: trunk/devel/llvm-devel/Makefile
===================================================================
--- trunk/devel/llvm-devel/Makefile	2013-12-19 03:53:51 UTC (rev 15675)
+++ trunk/devel/llvm-devel/Makefile	2013-12-19 04:27:20 UTC (rev 15676)
@@ -1,7 +1,7 @@
 # $MidnightBSD$
 
 PORTNAME=	llvm
-DISTVERSION=	3.0.r${SVN_REV}
+DISTVERSION=	3.4.r${SVN_REV}
 CATEGORIES=	devel lang
 MASTER_SITES=	${MASTER_SITE_FREEBSD_LOCAL}
 MASTER_SITE_SUBDIR=	brooks
@@ -9,50 +9,127 @@
 
 MAINTAINER=	ports at MidnightBSD.org
 COMMENT=	Low Level Virtual Machine
+
 LICENSE=	agg
 
-.if defined(PACKAGE_BUILDING) || defined(MAINTAINER_MODE)
-BUILD_DEPENDS=	bash:${PORTSDIR}/shells/bash
-.endif
-.if defined(MAINTAINER_MODE)
-BUILD_DEPENDS+=	f2c:${PORTSDIR}/lang/f2c
-.endif
+LLVM_SUFFIX=	-devel
+LLVM_PREFIX=	${PREFIX}/llvm${LLVM_SUFFIX}
+DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX}
+DATADIR=	${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX}
+UNIQUENAME=	${PORTNAME}${LLVM_SUFFIX}
 
-CONFLICTS=	llvm-2.[0-9]*
-
+USES=		gmake perl5
 GNU_CONFIGURE=	yes
-USE_GCC=	4.2+
-USE_GMAKE=	yes
 USE_BZIP2=	yes
-USE_LDCONFIG=	yes
-USE_PERL5=	yes
-MAKE_JOBS_SAFE=	yes
+GNU_CONFIGURE_PREFIX=	${LLVM_PREFIX}
+USE_LDCONFIG=	${LLVM_PREFIX}/lib
 
+SUB_FILES=	llvm-wrapper.sh
+SUB_LIST=	LLVM_PREFIX="${LLVM_PREFIX}" LLVM_SUFFIX="${LLVM_SUFFIX}"
+
 # Suggested tweaks from http://llvm.org/docs/Packaging.html
-# Commented out ones are currently broken.
+CONFIGURE_ARGS+=	--enable-shared
 MAKE_ARGS+=		REQUIRES_RTTI=1
-#CONFIGURE_ARGS+=	--enable-shared
+LIBNAME=		libLLVM-${DISTVERSION:C/\.r[0-9]*//}svn.so
 
-.if defined(MAINTAINER_MODE)
-CONFIGURE_ARGS+=	--with-f2c=${LOCALBASE}
+CONFIGURE_ARGS+=	--enable-bindings=none
+CONFIGURE_ARGS+=	--enable-optimized \
+			--enable-targets=host-only
+
+OPTIONS_DEFINE=	ASSERTS CMAKE DOCS LIT LTOPLUGIN MANPAGES
+
+ASSERTS_DESC=	Enable assertions (thread unsafe)
+CMAKE_DESC=	Build cmake support files
+LIT_DESC=	Install lit and FileCheck test tools (requires python)
+LTOPLUGIN_DESC=	Build LTO plugin (requires gold)
+
+OPTIONS_DEFAULT=	CMAKE LIT MANPAGES
+OPTIONS_SUB=	yes
+
+LLVM_RELEASE=	${PORTVERSION:C/\.r[0-9]*//}
+PLIST_SUB+=	LLVM_RELEASE=${LLVM_RELEASE}
+
+COMMANDS=	bugpoint \
+		llc \
+		lli \
+		llvm-ar \
+		llvm-as \
+		llvm-bcanalyzer \
+		llvm-config \
+		llvm-cov \
+		llvm-diff \
+		llvm-dis \
+		llvm-dwarfdump \
+		llvm-extract \
+		llvm-link \
+		llvm-mc \
+		llvm-mcmarkup \
+		llvm-nm \
+		llvm-objdump \
+		llvm-ranlib \
+		llvm-readobj \
+		llvm-rtdyld \
+		llvm-size \
+		llvm-stress \
+		llvm-symbolizer \
+		llvm-tblgen \
+		macho-dump \
+		opt
+FIRST_COMMAND=	${COMMANDS:C/^/XXXX/1:MXXXX*:C/^XXXX//}
+
+STRIP_LIBS=	BugpointPasses.so \
+		LLVMHello.so \
+		${LIBNAME}.0 \
+		libLTO.so
+
+.include <bsd.mport.options.mk>
+
+.if ${PORT_OPTIONS:MASSERTS}
+CONFIGURE_ARGS+=	--enable-assertions
+RELEASE_TYPE=		Release+Asserts
 .else
-CONFIGURE_ARGS+=	--enable-optimized
+CONFIGURE_ARGS+=	--disable-assertions
+RELEASE_TYPE=		Release
 .endif
 
-CONFIGURE_ARGS+=	--enable-bindings=none
+.if ${PORT_OPTIONS:MCMAKE}
+BUILD_DEPENDS+=	cmake:${PORTSDIR}/devel/cmake
+PORTDATA+=	cmake
+.endif
 
-OPTIONS=	ASSERTS	"Enable assertions (thread unsafe)" off
+.if ${PORT_OPTIONS:MDOCS} || ${PORT_OPTIONS:MMANPAGES}
+BUILD_DEPENDS+=	sphinx-build:${PORTSDIR}/textproc/py-sphinx
+.endif
 
-.if defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
+CONFIGURE_ARGS+=	--enable-docs
+.else
 CONFIGURE_ARGS+=	--disable-docs
 .endif
 
-MAN1=		bugpoint.1 lit.1 llc.1 lli.1 llvm-ar.1 \
-		llvm-as.1 llvm-bcanalyzer.1 llvm-config.1 llvm-diff.1 \
-		llvm-dis.1 llvm-extract.1 llvm-ld.1 llvm-link.1 llvm-nm.1 \
-		llvm-prof.1 llvm-ranlib.1 llvmc.1 llvmgcc.1 \
-		llvmgxx.1 opt.1 tblgen.1
+.if ${PORT_OPTIONS:MLIT}
+MAN1SRCS+=		lit.1
+USE_PYTHON=		yes
+LIT_COMMANDS=		lit llvm-lit FileCheck
+.else
+USE_PYTHON_BUILD=	yes
+.endif
 
+.if ${PORT_OPTIONS:MLTOPLUGIN}
+BUILD_DEPENDS+=		ld.gold:${PORTSDIR}/devel/binutils
+RUN_DEPENDS+=		ld.gold:${PORTSDIR}/devel/binutils
+CONFIGURE_ARGS+=	--with-binutils-include=${LOCALBASE}/include
+PLIST_FILES+=		llvm${LLVM_SUFFIX}/lib/LLVMgold.so
+.endif
+
+.if ${PORT_OPTIONS:MMANPAGES}
+MAN1SRCS+=	bugpoint.1 llc.1 lli.1 llvm-ar.1 llvm-as.1 \
+		llvm-bcanalyzer.1 llvm-config.1 llvm-cov.1 llvm-diff.1 \
+		llvm-dis.1 llvm-extract.1 llvm-link.1 llvm-nm.1 \
+		llvm-prof.1 llvm-stress.1 opt.1 tblgen.1
+PLIST_FILES+=	${MAN1SRCS:S|^|man/man1/|:S|.1$|${LLVM_SUFFIX}.1|}
+.endif
+
 .include <bsd.port.pre.mk>
 
 .if !defined(SVN_REV)
@@ -64,9 +141,8 @@
 .endif
 .endif
 
-.if ${ARCH} == "sparc64"
-BROKEN=		does not compile on sparc64
-.endif
+# NB: I don't re-test arches I don't use so this may be dated
+BROKEN_sparc64=	YES
 
 .if ${ARCH} == "amd64" || ${ARCH} == "ia64"
 CONFIGURE_ARGS+=	--enable-pic --with-pic
@@ -76,12 +152,6 @@
 CONFIGURE_ARGS+=	--with-optimize-option=-O2
 .endif
 
-.ifdef(WITH_ASSERTS)
-CONFIGURE_ARGS+=	--enable-assertions
-.else
-CONFIGURE_ARGS+=	--disable-assertions
-.endif
-
 .if defined(BOOTSTRAP) || defined(SVN_FETCH)
 FETCH_DEPENDS+=	svn:${PORTSDIR}/devel/subversion
 
@@ -91,7 +161,11 @@
 	    http://llvm.org/svn/llvm-project/llvm/trunk ${WRKSRC}
 	cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME}
 	echo "SVN_REV=	${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev
+.if ${USER} == brooks || ${USER} == bed22
+	scp ${DISTDIR}/${DISTNAME}.tar.bz2 \
+	    brooks at freefall.freebsd.org:public_distfiles/
 .endif
+.endif
 
 post-patch:
 	${REINPLACE_CMD} -e 's|\(PROJ_docsdir.*:=\).*$$|\1${DOCSDIR}|g' \
@@ -98,19 +172,76 @@
 	    ${WRKSRC}/Makefile.config.in
 	${REINPLACE_CMD} -e 's|\(PROJ_mandir.*:=\).*$$|\1${MANPREFIX}/man|g' \
 	    ${WRKSRC}/Makefile.config.in
+	${REINPLACE_CMD} -e 's|import lit|import lit${LLVM_SUFFIX}|' \
+	    -e 's|from lit|from lit${LLVM_SUFFIX}|' \
+	    -e 's|lit\.|lit${LLVM_SUFFIX}.|' \
+	    ${WRKSRC}/utils/lit/lit.py ${WRKSRC}/utils/lit/lit/*.py
 
-.if defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MCMAKE}
+post-configure:
+	${MKDIR} ${WRKDIR}/cmake
+	cd ${WRKDIR}/cmake && cmake -G "Unix Makefiles" ${WRKSRC}
+	${REINPLACE_CMD} -e 's|${WRKDIR}/cmake|${LLVM_PREFIX}|' \
+	    -e 's|${WRKSRC}/cmake/modules|${DATADIR}/cmake|' \
+	    ${WRKDIR}/cmake/share/llvm/cmake/LLVMConfig.cmake
+.endif
+
 post-build:
-	@cd ${WRKSRC}/docs/CommandGuide && ${GMAKE} ${MAN1}
+.if ${PORT_OPTIONS:MMANPAGES}
+	@cd ${WRKSRC}/docs && ${GMAKE} -f Makefile.sphinx man
+.endif
+.if ${PORT_OPTIONS:MDOCS}
+	@cd ${WRKSRC}/docs && ${GMAKE} -f Makefile.sphinx html
+.endif
 
 post-install:
-.for man in ${MAN1}
-	@${INSTALL_MAN} ${WRKSRC}/docs/CommandGuide/${man} \
-	     ${MANPREFIX}/man/man1/
+	${MV} ${STAGEDIR}${LLVM_PREFIX}/lib/${LIBNAME} \
+	    ${STAGEDIR}${LLVM_PREFIX}/lib/${LIBNAME}.0
+	${LN} -sf ${LIBNAME}.0 ${STAGEDIR}${LLVM_PREFIX}/lib/${LIBNAME}
+	${STRIP_CMD} ${STRIP_LIBS:S|^|${STAGEDIR}${LLVM_PREFIX}/lib/|}
+	${INSTALL_SCRIPT} ${WRKDIR}/llvm-wrapper.sh \
+	    ${STAGEDIR}${PREFIX}/bin/${FIRST_COMMAND}${LLVM_SUFFIX}
+.for command in ${COMMANDS:C/^/XXXX/1:NXXXX*}
+	test -e ${STAGEDIR}${LLVM_PREFIX}/bin/${command}
+	${LN} -f ${STAGEDIR}${PREFIX}/bin/${FIRST_COMMAND}${LLVM_SUFFIX} \
+	    ${STAGEDIR}${PREFIX}/bin/${command}${LLVM_SUFFIX}
 .endfor
+.if ${PORT_OPTIONS:MCMAKE}
+	${MKDIR} ${STAGEDIR}${DATADIR}/cmake
+	${INSTALL_DATA} ${WRKSRC}/cmake/modules/*.cmake \
+	    ${WRKDIR}/cmake/share/llvm/cmake/*.cmake \
+	    ${STAGEDIR}${DATADIR}/cmake/
 .endif
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}/html
+	${FIND} ${WRKSRC}/docs/_build/html -type f | \
+	    ${XARGS} -I _DOC_ ${INSTALL_DATA} _DOC_ ${STAGEDIR}${DOCSDIR}/html/
+.endif
+.if ${PORT_OPTIONS:MLIT}
+	${INSTALL_SCRIPT} ${WRKSRC}/utils/lit/lit.py \
+	    ${STAGEDIR}${LLVM_PREFIX}/bin/lit
+	${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/lit \
+	    ${STAGEDIR}${LLVM_PREFIX}/bin/llvm-lit
+	${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/lit \
+	    ${STAGEDIR}${PREFIX}/bin/lit${LLVM_SUFFIX}
+	${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/lit \
+	    ${STAGEDIR}${PREFIX}/bin/llvm-lit${LLVM_SUFFIX}
+	${MKDIR} ${FAKE_DESTDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX}
+	${INSTALL_DATA} ${WRKSRC}/utils/lit/lit/*.py \
+	    ${FAKE_DESTDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX}
+	${INSTALL_PROGRAM} ${WRKSRC}/${RELEASE_TYPE}/bin/FileCheck \
+	    ${STAGEDIR}${LLVM_PREFIX}/bin/
+	${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/FileCheck \
+	    ${STAGEDIR}${PREFIX}/bin/FileCheck${LLVM_SUFFIX}
+.endif
+.if ${PORT_OPTIONS:MMANPAGES}
+	for man in ${MAN1SRCS}; do \
+		${INSTALL_MAN} ${WRKSRC}/docs/_build/man/$${man} \
+		    ${STAGEDIR}${MANPREFIX}/man/man1/$${man%.1}${LLVM_SUFFIX}.1 ; \
+	done
+.endif
 
-TEST_CMD=	'(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${GMAKE} check-local-lit)'
+TEST_CMD=	'(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} LD_LIBRARY_PATH=${WRKSRC}/Release/lib ${GMAKE} check-local-lit)'
 regression-test: ${BUILD_COOKIE}
 	if [ `${ID} -u` = 0 ]; then \
 		${CHOWN} -R nobody ${WRKSRC}/test; \
@@ -119,37 +250,32 @@
 		${SH} -c ${TEST_CMD}; \
 	fi
 
-PLIST_FILE_LIST=	bin/bugpoint \
-			bin/llc \
-			bin/lli \
-			bin/llvm* \
-			bin/macho-dump \
-			bin/opt \
-			bin/tblgen \
-			lib/LLVMHello.so \
-			lib/BugpointPasses.so \
-			lib/libCompilerDriver.a \
-			lib/libEnhancedDisassembly.so \
-			lib/libEnhancedDisassembly.a \
-			lib/libLTO.* \
-			lib/libLLVM* \
-			lib/libprofile_rt.so \
-			lib/libprofile_rt.a
-PLIST_DIR_LIST=		include/llvm-c \
-			include/llvm
 build-plist:
 	${RM} -f ${PLIST}
-	cd ${PREFIX} && \
-	    (ls ${PLIST_FILE_LIST}; ${FIND} ${PLIST_DIR_LIST} -type f) | \
+.for command in ${COMMANDS}
+	${ECHO_CMD} bin/${command}${LLVM_SUFFIX} >> ${PLIST}
+.endfor
+.for command in ${LIT_COMMANDS}
+	${ECHO_CMD} %%LIT%%bin/${command}${LLVM_SUFFIX} >> ${PLIST}
+	${ECHO_CMD} %%LIT%%${LLVM_PREFIX:S|${PREFIX}/||}/bin/${command} >> ${PLIST}
+.endfor
+	${FIND} ${STAGEDIR}${LLVM_PREFIX} -type f -o -type l | \
+	    ${GREP} -v 'lit$$' | ${GREP} -v 'FileCheck$$' | \
+	    ${GREP} -v man/man1 | ${SED} -e 's|${STAGEDIR}${PREFIX}/||' \
+	    -e 's|${PORTVERSION}|%%PORTVERSION%%|' | \
 	    ${SORT} >> ${PLIST}
-	${FIND} ${DOCSDIR} -type f | \
-	    ${SED} -e 's|${DOCSDIR}|%%PORTDOCS%%%%DOCSDIR%%|' | \
+	${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX} -type f | \
+	    ${SED} -e 's|${STAGEDIR}${PYTHON_SITELIBDIR}|%%LIT%%%%PYTHON_SITELIBDIR%%|' | \
 	    ${SORT} >> ${PLIST}
-	cd ${PREFIX} && \
-	    ${FIND} ${PLIST_DIR_LIST} -type d | \
+	${FIND} ${STAGEDIR}${DOCSDIR} -type f | \
+	    ${SED} -e 's|${STAGEDIR}${DOCSDIR}|%%PORTDOCS%%%%DOCSDIR%%|' | \
+	    ${SORT} >> ${PLIST}
+	${FIND} ${STAGEDIR}${LLVM_PREFIX} -type d | \
+	    ${SED} -e 's|${STAGEDIR}${PREFIX}/||' | \
 	    ${SORT} -r | ${SED} -e 's|^|@dirrm |' >> ${PLIST}
-	${FIND} ${DOCSDIR} -type d | ${SORT} -r | \
-	    ${SED} -e 's|${DOCSDIR}|%%DOCSDIR%%|' \
-	     -e 's|^|%%PORTDOCS%%@dirrm |' >> ${PLIST}
+	echo "%%LIT%%@dirrm %%PYTHON_SITELIBDIR%%/lit${LLVM_SUFFIX}" >> ${PLIST}
+	${FIND} ${STAGEDIR}${DOCSDIR} -type d | \
+	    ${SED} -e 's|${STAGEDIR}${DOCSDIR}|%%PORTDOCS%%@dirrm %%DOCSDIR%%|' | \
+	    ${SORT} -r >> ${PLIST}
 
 .include <bsd.port.post.mk>

Modified: trunk/devel/llvm-devel/Makefile.svn_rev
===================================================================
--- trunk/devel/llvm-devel/Makefile.svn_rev	2013-12-19 03:53:51 UTC (rev 15675)
+++ trunk/devel/llvm-devel/Makefile.svn_rev	2013-12-19 04:27:20 UTC (rev 15676)
@@ -1 +1 @@
-SVN_REV=	133062
+SVN_REV=	193887

Modified: trunk/devel/llvm-devel/distinfo
===================================================================
--- trunk/devel/llvm-devel/distinfo	2013-12-19 03:53:51 UTC (rev 15675)
+++ trunk/devel/llvm-devel/distinfo	2013-12-19 04:27:20 UTC (rev 15676)
@@ -1,3 +1,2 @@
-SHA256 (llvm-3.0.r133062.tar.bz2) = 8ad06ac907f6867739546f097c15af5a08f60342372cc8b5850cc9db0741b091
-RMD160 (llvm-3.0.r133062.tar.bz2) = 34d0f05577335534bf56eb22f864fa7bbb683b28
-SIZE (llvm-3.0.r133062.tar.bz2) = 7793259
+SHA256 (llvm-3.4.r193887.tar.bz2) = 175e3034a0f19c0ca9ce2fc75ccdc796f3c3bfd29b69f595aa4fc857f53db955
+SIZE (llvm-3.4.r193887.tar.bz2) = 11845136

Modified: trunk/devel/llvm-devel/pkg-descr
===================================================================
--- trunk/devel/llvm-devel/pkg-descr	2013-12-19 03:53:51 UTC (rev 15675)
+++ trunk/devel/llvm-devel/pkg-descr	2013-12-19 04:27:20 UTC (rev 15676)
@@ -7,4 +7,4 @@
   virtual machine. It does not require garbage collection or run-time
   code generation.
 
-WWW:	http://llvm.cs.uiuc.edu/
+WWW:	http://llvm.org/

Modified: trunk/devel/llvm-devel/pkg-plist
===================================================================
--- trunk/devel/llvm-devel/pkg-plist	2013-12-19 03:53:51 UTC (rev 15675)
+++ trunk/devel/llvm-devel/pkg-plist	2013-12-19 04:27:20 UTC (rev 15676)
@@ -1,702 +1,938 @@
-bin/bugpoint
-bin/llc
-bin/lli
-bin/llvm-ar
-bin/llvm-as
-bin/llvm-bcanalyzer
-bin/llvm-config
-bin/llvm-diff
-bin/llvm-dis
-bin/llvm-extract
-bin/llvm-ld
-bin/llvm-link
-bin/llvm-mc
-bin/llvm-nm
-bin/llvm-objdump
-bin/llvm-prof
-bin/llvm-ranlib
-bin/llvm-rtdyld
-bin/llvm-stub
-bin/llvmc
-bin/macho-dump
-bin/opt
-bin/tblgen
-include/llvm-c/Analysis.h
-include/llvm-c/BitReader.h
-include/llvm-c/BitWriter.h
-include/llvm-c/Core.h
-include/llvm-c/Disassembler.h
-include/llvm-c/EnhancedDisassembly.h
-include/llvm-c/ExecutionEngine.h
-include/llvm-c/Initialization.h
-include/llvm-c/LinkTimeOptimizer.h
-include/llvm-c/Object.h
-include/llvm-c/Target.h
-include/llvm-c/Transforms/IPO.h
-include/llvm-c/Transforms/Scalar.h
-include/llvm-c/lto.h
-include/llvm/ADT/APFloat.h
-include/llvm/ADT/APInt.h
-include/llvm/ADT/APSInt.h
-include/llvm/ADT/ArrayRef.h
-include/llvm/ADT/BitVector.h
-include/llvm/ADT/DAGDeltaAlgorithm.h
-include/llvm/ADT/DeltaAlgorithm.h
-include/llvm/ADT/DenseMap.h
-include/llvm/ADT/DenseMapInfo.h
-include/llvm/ADT/DenseSet.h
-include/llvm/ADT/DepthFirstIterator.h
-include/llvm/ADT/EquivalenceClasses.h
-include/llvm/ADT/FoldingSet.h
-include/llvm/ADT/GraphTraits.h
-include/llvm/ADT/ImmutableIntervalMap.h
-include/llvm/ADT/ImmutableList.h
-include/llvm/ADT/ImmutableMap.h
-include/llvm/ADT/ImmutableSet.h
-include/llvm/ADT/InMemoryStruct.h
-include/llvm/ADT/IndexedMap.h
-include/llvm/ADT/IntEqClasses.h
-include/llvm/ADT/IntervalMap.h
-include/llvm/ADT/IntrusiveRefCntPtr.h
-include/llvm/ADT/NullablePtr.h
-include/llvm/ADT/Optional.h
-include/llvm/ADT/OwningPtr.h
-include/llvm/ADT/PackedVector.h
-include/llvm/ADT/PointerIntPair.h
-include/llvm/ADT/PointerUnion.h
-include/llvm/ADT/PostOrderIterator.h
-include/llvm/ADT/PriorityQueue.h
-include/llvm/ADT/SCCIterator.h
-include/llvm/ADT/STLExtras.h
-include/llvm/ADT/ScopedHashTable.h
-include/llvm/ADT/SetOperations.h
-include/llvm/ADT/SetVector.h
-include/llvm/ADT/SmallBitVector.h
-include/llvm/ADT/SmallPtrSet.h
-include/llvm/ADT/SmallSet.h
-include/llvm/ADT/SmallString.h
-include/llvm/ADT/SmallVector.h
-include/llvm/ADT/SparseBitVector.h
-include/llvm/ADT/Statistic.h
-include/llvm/ADT/StringExtras.h
-include/llvm/ADT/StringMap.h
-include/llvm/ADT/StringRef.h
-include/llvm/ADT/StringSet.h
-include/llvm/ADT/StringSwitch.h
-include/llvm/ADT/Trie.h
-include/llvm/ADT/Triple.h
-include/llvm/ADT/Twine.h
-include/llvm/ADT/UniqueVector.h
-include/llvm/ADT/ValueMap.h
-include/llvm/ADT/VectorExtras.h
-include/llvm/ADT/ilist.h
-include/llvm/ADT/ilist_node.h
-include/llvm/AbstractTypeUser.h
-include/llvm/Analysis/AliasAnalysis.h
-include/llvm/Analysis/AliasSetTracker.h
-include/llvm/Analysis/BranchProbabilityInfo.h
-include/llvm/Analysis/CFGPrinter.h
-include/llvm/Analysis/CallGraph.h
-include/llvm/Analysis/CaptureTracking.h
-include/llvm/Analysis/CodeMetrics.h
-include/llvm/Analysis/ConstantFolding.h
-include/llvm/Analysis/ConstantsScanner.h
-include/llvm/Analysis/DIBuilder.h
-include/llvm/Analysis/DOTGraphTraitsPass.h
-include/llvm/Analysis/DebugInfo.h
-include/llvm/Analysis/DomPrinter.h
-include/llvm/Analysis/DominanceFrontier.h
-include/llvm/Analysis/DominatorInternals.h
-include/llvm/Analysis/Dominators.h
-include/llvm/Analysis/FindUsedTypes.h
-include/llvm/Analysis/IVUsers.h
-include/llvm/Analysis/InlineCost.h
-include/llvm/Analysis/InstructionSimplify.h
-include/llvm/Analysis/Interval.h
-include/llvm/Analysis/IntervalIterator.h
-include/llvm/Analysis/IntervalPartition.h
-include/llvm/Analysis/LazyValueInfo.h
-include/llvm/Analysis/LibCallAliasAnalysis.h
-include/llvm/Analysis/LibCallSemantics.h
-include/llvm/Analysis/Lint.h
-include/llvm/Analysis/Loads.h
-include/llvm/Analysis/LoopDependenceAnalysis.h
-include/llvm/Analysis/LoopInfo.h
-include/llvm/Analysis/LoopPass.h
-include/llvm/Analysis/MemoryBuiltins.h
-include/llvm/Analysis/MemoryDependenceAnalysis.h
-include/llvm/Analysis/PHITransAddr.h
-include/llvm/Analysis/Passes.h
-include/llvm/Analysis/PathNumbering.h
-include/llvm/Analysis/PathProfileInfo.h
-include/llvm/Analysis/PostDominators.h
-include/llvm/Analysis/ProfileInfo.h
-include/llvm/Analysis/ProfileInfoLoader.h
-include/llvm/Analysis/ProfileInfoTypes.h
-include/llvm/Analysis/RegionInfo.h
-include/llvm/Analysis/RegionIterator.h
-include/llvm/Analysis/RegionPass.h
-include/llvm/Analysis/RegionPrinter.h
-include/llvm/Analysis/ScalarEvolution.h
-include/llvm/Analysis/ScalarEvolutionExpander.h
-include/llvm/Analysis/ScalarEvolutionExpressions.h
-include/llvm/Analysis/ScalarEvolutionNormalization.h
-include/llvm/Analysis/SparsePropagation.h
-include/llvm/Analysis/Trace.h
-include/llvm/Analysis/ValueTracking.h
-include/llvm/Analysis/Verifier.h
-include/llvm/Argument.h
-include/llvm/Assembly/AssemblyAnnotationWriter.h
-include/llvm/Assembly/Parser.h
-include/llvm/Assembly/PrintModulePass.h
-include/llvm/Assembly/Writer.h
-include/llvm/Attributes.h
-include/llvm/AutoUpgrade.h
-include/llvm/BasicBlock.h
-include/llvm/Bitcode/Archive.h
-include/llvm/Bitcode/BitCodes.h
-include/llvm/Bitcode/BitstreamReader.h
-include/llvm/Bitcode/BitstreamWriter.h
-include/llvm/Bitcode/LLVMBitCodes.h
-include/llvm/Bitcode/ReaderWriter.h
-include/llvm/CallGraphSCCPass.h
-include/llvm/CallingConv.h
-include/llvm/CodeGen/Analysis.h
-include/llvm/CodeGen/AsmPrinter.h
-include/llvm/CodeGen/BinaryObject.h
-include/llvm/CodeGen/CalcSpillWeights.h
-include/llvm/CodeGen/CallingConvLower.h
-include/llvm/CodeGen/EdgeBundles.h
-include/llvm/CodeGen/FastISel.h
-include/llvm/CodeGen/FunctionLoweringInfo.h
-include/llvm/CodeGen/GCMetadata.h
-include/llvm/CodeGen/GCMetadataPrinter.h
-include/llvm/CodeGen/GCStrategy.h
-include/llvm/CodeGen/GCs.h
-include/llvm/CodeGen/ISDOpcodes.h
-include/llvm/CodeGen/IntrinsicLowering.h
-include/llvm/CodeGen/JITCodeEmitter.h
-include/llvm/CodeGen/LatencyPriorityQueue.h
-include/llvm/CodeGen/LinkAllAsmWriterComponents.h
-include/llvm/CodeGen/LinkAllCodegenComponents.h
-include/llvm/CodeGen/LiveInterval.h
-include/llvm/CodeGen/LiveIntervalAnalysis.h
-include/llvm/CodeGen/LiveStackAnalysis.h
-include/llvm/CodeGen/LiveVariables.h
-include/llvm/CodeGen/MachORelocation.h
-include/llvm/CodeGen/MachineBasicBlock.h
-include/llvm/CodeGen/MachineCodeEmitter.h
-include/llvm/CodeGen/MachineCodeInfo.h
-include/llvm/CodeGen/MachineConstantPool.h
-include/llvm/CodeGen/MachineDominators.h
-include/llvm/CodeGen/MachineFrameInfo.h
-include/llvm/CodeGen/MachineFunction.h
-include/llvm/CodeGen/MachineFunctionAnalysis.h
-include/llvm/CodeGen/MachineFunctionPass.h
-include/llvm/CodeGen/MachineInstr.h
-include/llvm/CodeGen/MachineInstrBuilder.h
-include/llvm/CodeGen/MachineJumpTableInfo.h
-include/llvm/CodeGen/MachineLocation.h
-include/llvm/CodeGen/MachineLoopInfo.h
-include/llvm/CodeGen/MachineLoopRanges.h
-include/llvm/CodeGen/MachineMemOperand.h
-include/llvm/CodeGen/MachineModuleInfo.h
-include/llvm/CodeGen/MachineModuleInfoImpls.h
-include/llvm/CodeGen/MachineOperand.h
-include/llvm/CodeGen/MachinePassRegistry.h
-include/llvm/CodeGen/MachineRegisterInfo.h
-include/llvm/CodeGen/MachineRelocation.h
-include/llvm/CodeGen/MachineSSAUpdater.h
-include/llvm/CodeGen/ObjectCodeEmitter.h
-include/llvm/CodeGen/PBQP/Graph.h
-include/llvm/CodeGen/PBQP/HeuristicBase.h
-include/llvm/CodeGen/PBQP/HeuristicSolver.h
-include/llvm/CodeGen/PBQP/Heuristics/Briggs.h
-include/llvm/CodeGen/PBQP/Math.h
-include/llvm/CodeGen/PBQP/Solution.h
-include/llvm/CodeGen/Passes.h
-include/llvm/CodeGen/ProcessImplicitDefs.h
-include/llvm/CodeGen/PseudoSourceValue.h
-include/llvm/CodeGen/RegAllocPBQP.h
-include/llvm/CodeGen/RegAllocRegistry.h
-include/llvm/CodeGen/RegisterCoalescer.h
-include/llvm/CodeGen/RegisterScavenging.h
-include/llvm/CodeGen/RuntimeLibcalls.h
-include/llvm/CodeGen/ScheduleDAG.h
-include/llvm/CodeGen/ScheduleHazardRecognizer.h
-include/llvm/CodeGen/SchedulerRegistry.h
-include/llvm/CodeGen/ScoreboardHazardRecognizer.h
-include/llvm/CodeGen/SelectionDAG.h
-include/llvm/CodeGen/SelectionDAGISel.h
-include/llvm/CodeGen/SelectionDAGNodes.h
-include/llvm/CodeGen/SlotIndexes.h
-include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
-include/llvm/CodeGen/ValueTypes.h
-include/llvm/CodeGen/ValueTypes.td
-include/llvm/CompilerDriver/Action.h
-include/llvm/CompilerDriver/AutoGenerated.h
-include/llvm/CompilerDriver/BuiltinOptions.h
-include/llvm/CompilerDriver/Common.td
-include/llvm/CompilerDriver/CompilationGraph.h
-include/llvm/CompilerDriver/Error.h
-include/llvm/CompilerDriver/Main.h
-include/llvm/CompilerDriver/Main.inc
-include/llvm/CompilerDriver/Tool.h
-include/llvm/Config/AsmParsers.def
-include/llvm/Config/AsmPrinters.def
-include/llvm/Config/Disassemblers.def
-include/llvm/Config/Targets.def
-include/llvm/Config/config.h
-include/llvm/Config/llvm-config.h
-include/llvm/Constant.h
-include/llvm/Constants.h
-include/llvm/DebugInfoProbe.h
-include/llvm/DefaultPasses.h
-include/llvm/DerivedTypes.h
-include/llvm/ExecutionEngine/ExecutionEngine.h
-include/llvm/ExecutionEngine/GenericValue.h
-include/llvm/ExecutionEngine/Interpreter.h
-include/llvm/ExecutionEngine/JIT.h
-include/llvm/ExecutionEngine/JITEventListener.h
-include/llvm/ExecutionEngine/JITMemoryManager.h
-include/llvm/ExecutionEngine/MCJIT.h
-include/llvm/ExecutionEngine/RuntimeDyld.h
-include/llvm/Function.h
-include/llvm/GVMaterializer.h
-include/llvm/GlobalAlias.h
-include/llvm/GlobalValue.h
-include/llvm/GlobalVariable.h
-include/llvm/InitializePasses.h
-include/llvm/InlineAsm.h
-include/llvm/InstrTypes.h
-include/llvm/Instruction.def
-include/llvm/Instruction.h
-include/llvm/Instructions.h
-include/llvm/IntrinsicInst.h
-include/llvm/Intrinsics.gen
-include/llvm/Intrinsics.h
-include/llvm/Intrinsics.td
-include/llvm/IntrinsicsARM.td
-include/llvm/IntrinsicsAlpha.td
-include/llvm/IntrinsicsCellSPU.td
-include/llvm/IntrinsicsPTX.td
-include/llvm/IntrinsicsPowerPC.td
-include/llvm/IntrinsicsX86.td
-include/llvm/IntrinsicsXCore.td
-include/llvm/LLVMContext.h
-include/llvm/LinkAllPasses.h
-include/llvm/LinkAllVMCore.h
-include/llvm/Linker.h
-include/llvm/MC/EDInstInfo.h
-include/llvm/MC/MCAsmInfo.h
-include/llvm/MC/MCAsmInfoCOFF.h
-include/llvm/MC/MCAsmInfoDarwin.h
-include/llvm/MC/MCAsmLayout.h
-include/llvm/MC/MCAssembler.h
-include/llvm/MC/MCCodeEmitter.h
-include/llvm/MC/MCContext.h
-include/llvm/MC/MCDirectives.h
-include/llvm/MC/MCDisassembler.h
-include/llvm/MC/MCDwarf.h
-include/llvm/MC/MCELFObjectWriter.h
-include/llvm/MC/MCELFSymbolFlags.h
-include/llvm/MC/MCExpr.h
-include/llvm/MC/MCFixup.h
-include/llvm/MC/MCFixupKindInfo.h
-include/llvm/MC/MCInst.h
-include/llvm/MC/MCInstPrinter.h
-include/llvm/MC/MCLabel.h
-include/llvm/MC/MCMachOSymbolFlags.h
-include/llvm/MC/MCMachObjectWriter.h
-include/llvm/MC/MCObjectStreamer.h
-include/llvm/MC/MCObjectWriter.h
-include/llvm/MC/MCParser/AsmCond.h
-include/llvm/MC/MCParser/AsmLexer.h
-include/llvm/MC/MCParser/MCAsmLexer.h
-include/llvm/MC/MCParser/MCAsmParser.h
-include/llvm/MC/MCParser/MCAsmParserExtension.h
-include/llvm/MC/MCParser/MCParsedAsmOperand.h
-include/llvm/MC/MCSection.h
-include/llvm/MC/MCSectionCOFF.h
-include/llvm/MC/MCSectionELF.h
-include/llvm/MC/MCSectionMachO.h
-include/llvm/MC/MCStreamer.h
-include/llvm/MC/MCSymbol.h
-include/llvm/MC/MCValue.h
-include/llvm/MC/MCWin64EH.h
-include/llvm/MC/SectionKind.h
-include/llvm/Metadata.h
-include/llvm/Module.h
-include/llvm/Object/MachOFormat.h
-include/llvm/Object/MachOObject.h
-include/llvm/Object/ObjectFile.h
-include/llvm/OperandTraits.h
-include/llvm/Operator.h
-include/llvm/Pass.h
-include/llvm/PassAnalysisSupport.h
-include/llvm/PassManager.h
-include/llvm/PassManagers.h
-include/llvm/PassRegistry.h
-include/llvm/PassSupport.h
-include/llvm/Support/AIXDataTypesFix.h
-include/llvm/Support/AlignOf.h
-include/llvm/Support/Allocator.h
-include/llvm/Support/Atomic.h
-include/llvm/Support/BranchProbability.h
-include/llvm/Support/CFG.h
-include/llvm/Support/COFF.h
-include/llvm/Support/CallSite.h
-include/llvm/Support/Casting.h
-include/llvm/Support/CommandLine.h
-include/llvm/Support/Compiler.h
-include/llvm/Support/ConstantFolder.h
-include/llvm/Support/ConstantRange.h
-include/llvm/Support/CrashRecoveryContext.h
-include/llvm/Support/DOTGraphTraits.h
-include/llvm/Support/DataFlow.h
-include/llvm/Support/DataTypes.h
-include/llvm/Support/Debug.h
-include/llvm/Support/DebugLoc.h
-include/llvm/Support/Disassembler.h
-include/llvm/Support/Dwarf.h
-include/llvm/Support/DynamicLibrary.h
-include/llvm/Support/ELF.h
-include/llvm/Support/Endian.h
-include/llvm/Support/Errno.h
-include/llvm/Support/ErrorHandling.h
-include/llvm/Support/FEnv.h
-include/llvm/Support/FileSystem.h
-include/llvm/Support/FileUtilities.h
-include/llvm/Support/Format.h
-include/llvm/Support/FormattedStream.h
-include/llvm/Support/GetElementPtrTypeIterator.h
-include/llvm/Support/GraphWriter.h
-include/llvm/Support/Host.h
-include/llvm/Support/IRBuilder.h
-include/llvm/Support/IRReader.h
-include/llvm/Support/IncludeFile.h
-include/llvm/Support/InstIterator.h
-include/llvm/Support/InstVisitor.h
-include/llvm/Support/LICENSE.TXT
-include/llvm/Support/LeakDetector.h
-include/llvm/Support/MachO.h
-include/llvm/Support/ManagedStatic.h
-include/llvm/Support/MathExtras.h
-include/llvm/Support/Memory.h
-include/llvm/Support/MemoryBuffer.h
-include/llvm/Support/MemoryObject.h
-include/llvm/Support/Mutex.h
-include/llvm/Support/MutexGuard.h
-include/llvm/Support/NoFolder.h
-include/llvm/Support/OutputBuffer.h
-include/llvm/Support/PassManagerBuilder.h
-include/llvm/Support/PassNameParser.h
-include/llvm/Support/Path.h
-include/llvm/Support/PathV1.h
-include/llvm/Support/PathV2.h
-include/llvm/Support/PatternMatch.h
-include/llvm/Support/PluginLoader.h
-include/llvm/Support/PointerLikeTypeTraits.h
-include/llvm/Support/PredIteratorCache.h
-include/llvm/Support/PrettyStackTrace.h
-include/llvm/Support/Process.h
-include/llvm/Support/Program.h
-include/llvm/Support/RWMutex.h
-include/llvm/Support/Recycler.h
-include/llvm/Support/RecyclingAllocator.h
-include/llvm/Support/Regex.h
-include/llvm/Support/Registry.h
-include/llvm/Support/RegistryParser.h
-include/llvm/Support/SMLoc.h
-include/llvm/Support/Signals.h
-include/llvm/Support/Solaris.h
-include/llvm/Support/SourceMgr.h
-include/llvm/Support/StringPool.h
-include/llvm/Support/SwapByteOrder.h
-include/llvm/Support/SystemUtils.h
-include/llvm/Support/TargetFolder.h
-include/llvm/Support/ThreadLocal.h
-include/llvm/Support/Threading.h
-include/llvm/Support/TimeValue.h
-include/llvm/Support/Timer.h
-include/llvm/Support/ToolOutputFile.h
-include/llvm/Support/TypeBuilder.h
-include/llvm/Support/Valgrind.h
-include/llvm/Support/ValueHandle.h
-include/llvm/Support/Win64EH.h
-include/llvm/Support/circular_raw_ostream.h
-include/llvm/Support/raw_os_ostream.h
-include/llvm/Support/raw_ostream.h
-include/llvm/Support/system_error.h
-include/llvm/Support/type_traits.h
-include/llvm/SymbolTableListTraits.h
-include/llvm/Target/Mangler.h
-include/llvm/Target/SubtargetFeature.h
-include/llvm/Target/Target.td
-include/llvm/Target/TargetAsmBackend.h
-include/llvm/Target/TargetAsmInfo.h
-include/llvm/Target/TargetAsmLexer.h
-include/llvm/Target/TargetAsmParser.h
-include/llvm/Target/TargetCallingConv.h
-include/llvm/Target/TargetCallingConv.td
-include/llvm/Target/TargetData.h
-include/llvm/Target/TargetELFWriterInfo.h
-include/llvm/Target/TargetFrameLowering.h
-include/llvm/Target/TargetInstrDesc.h
-include/llvm/Target/TargetInstrInfo.h
-include/llvm/Target/TargetInstrItineraries.h
-include/llvm/Target/TargetIntrinsicInfo.h
-include/llvm/Target/TargetJITInfo.h
-include/llvm/Target/TargetLibraryInfo.h
-include/llvm/Target/TargetLowering.h
-include/llvm/Target/TargetLoweringObjectFile.h
-include/llvm/Target/TargetMachine.h
-include/llvm/Target/TargetOpcodes.h
-include/llvm/Target/TargetOptions.h
-include/llvm/Target/TargetRegisterInfo.h
-include/llvm/Target/TargetRegistry.h
-include/llvm/Target/TargetSchedule.td
-include/llvm/Target/TargetSelect.h
-include/llvm/Target/TargetSelectionDAG.td
-include/llvm/Target/TargetSelectionDAGInfo.h
-include/llvm/Target/TargetSubtarget.h
-include/llvm/Transforms/IPO.h
-include/llvm/Transforms/IPO/InlinerPass.h
-include/llvm/Transforms/Instrumentation.h
-include/llvm/Transforms/Scalar.h
-include/llvm/Transforms/Utils/AddrModeMatcher.h
-include/llvm/Transforms/Utils/BasicBlockUtils.h
-include/llvm/Transforms/Utils/BasicInliner.h
-include/llvm/Transforms/Utils/BuildLibCalls.h
-include/llvm/Transforms/Utils/Cloning.h
-include/llvm/Transforms/Utils/FunctionUtils.h
-include/llvm/Transforms/Utils/Local.h
-include/llvm/Transforms/Utils/PromoteMemToReg.h
-include/llvm/Transforms/Utils/SSAUpdater.h
-include/llvm/Transforms/Utils/SSAUpdaterImpl.h
-include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
-include/llvm/Transforms/Utils/UnrollLoop.h
-include/llvm/Transforms/Utils/ValueMapper.h
-include/llvm/Type.h
-include/llvm/TypeSymbolTable.h
-include/llvm/Use.h
-include/llvm/User.h
-include/llvm/Value.h
-include/llvm/ValueSymbolTable.h
-lib/BugpointPasses.so
-lib/LLVMHello.so
-lib/libCompilerDriver.a
-lib/libEnhancedDisassembly.a
-lib/libEnhancedDisassembly.so
-lib/libLLVMARMAsmParser.a
-lib/libLLVMARMAsmPrinter.a
-lib/libLLVMARMCodeGen.a
-lib/libLLVMARMDisassembler.a
-lib/libLLVMARMInfo.a
-lib/libLLVMAlphaCodeGen.a
-lib/libLLVMAlphaInfo.a
-lib/libLLVMAnalysis.a
-lib/libLLVMArchive.a
-lib/libLLVMAsmParser.a
-lib/libLLVMAsmPrinter.a
-lib/libLLVMBitReader.a
-lib/libLLVMBitWriter.a
-lib/libLLVMBlackfinCodeGen.a
-lib/libLLVMBlackfinInfo.a
-lib/libLLVMCBackend.a
-lib/libLLVMCBackendInfo.a
-lib/libLLVMCellSPUCodeGen.a
-lib/libLLVMCellSPUInfo.a
-lib/libLLVMCodeGen.a
-lib/libLLVMCore.a
-lib/libLLVMCppBackend.a
-lib/libLLVMCppBackendInfo.a
-lib/libLLVMExecutionEngine.a
-lib/libLLVMInstCombine.a
-lib/libLLVMInstrumentation.a
-lib/libLLVMInterpreter.a
-lib/libLLVMJIT.a
-lib/libLLVMLinker.a
-lib/libLLVMMBlazeAsmParser.a
-lib/libLLVMMBlazeAsmPrinter.a
-lib/libLLVMMBlazeCodeGen.a
-lib/libLLVMMBlazeDisassembler.a
-lib/libLLVMMBlazeInfo.a
-lib/libLLVMMC.a
-lib/libLLVMMCDisassembler.a
-lib/libLLVMMCJIT.a
-lib/libLLVMMCParser.a
-lib/libLLVMMSP430AsmPrinter.a
-lib/libLLVMMSP430CodeGen.a
-lib/libLLVMMSP430Info.a
-lib/libLLVMMipsCodeGen.a
-lib/libLLVMMipsInfo.a
-lib/libLLVMObject.a
-lib/libLLVMPTXCodeGen.a
-lib/libLLVMPTXInfo.a
-lib/libLLVMPowerPCAsmPrinter.a
-lib/libLLVMPowerPCCodeGen.a
-lib/libLLVMPowerPCInfo.a
-lib/libLLVMRuntimeDyld.a
-lib/libLLVMScalarOpts.a
-lib/libLLVMSelectionDAG.a
-lib/libLLVMSparcCodeGen.a
-lib/libLLVMSparcInfo.a
-lib/libLLVMSupport.a
-lib/libLLVMSystemZCodeGen.a
-lib/libLLVMSystemZInfo.a
-lib/libLLVMTarget.a
-lib/libLLVMTransformUtils.a
-lib/libLLVMX86AsmParser.a
-lib/libLLVMX86AsmPrinter.a
-lib/libLLVMX86CodeGen.a
-lib/libLLVMX86Disassembler.a
-lib/libLLVMX86Info.a
-lib/libLLVMX86Utils.a
-lib/libLLVMXCoreCodeGen.a
-lib/libLLVMXCoreInfo.a
-lib/libLLVMipa.a
-lib/libLLVMipo.a
-lib/libLTO.a
-lib/libLTO.so
-lib/libprofile_rt.a
-lib/libprofile_rt.so
+bin/bugpoint-devel
+bin/llc-devel
+bin/lli-devel
+bin/llvm-ar-devel
+bin/llvm-as-devel
+bin/llvm-bcanalyzer-devel
+bin/llvm-config-devel
+bin/llvm-cov-devel
+bin/llvm-diff-devel
+bin/llvm-dis-devel
+bin/llvm-dwarfdump-devel
+bin/llvm-extract-devel
+bin/llvm-link-devel
+bin/llvm-mc-devel
+bin/llvm-mcmarkup-devel
+bin/llvm-nm-devel
+bin/llvm-objdump-devel
+bin/llvm-ranlib-devel
+bin/llvm-readobj-devel
+bin/llvm-rtdyld-devel
+bin/llvm-size-devel
+bin/llvm-stress-devel
+bin/llvm-symbolizer-devel
+bin/llvm-tblgen-devel
+bin/macho-dump-devel
+bin/opt-devel
+%%LIT%%bin/lit-devel
+%%LIT%%llvm-devel/bin/lit
+%%LIT%%bin/llvm-lit-devel
+%%LIT%%llvm-devel/bin/llvm-lit
+%%LIT%%bin/FileCheck-devel
+%%LIT%%llvm-devel/bin/FileCheck
+llvm-devel/bin/bugpoint
+llvm-devel/bin/llc
+llvm-devel/bin/lli
+llvm-devel/bin/lli-child-target
+llvm-devel/bin/llvm-ar
+llvm-devel/bin/llvm-as
+llvm-devel/bin/llvm-bcanalyzer
+llvm-devel/bin/llvm-config
+llvm-devel/bin/llvm-cov
+llvm-devel/bin/llvm-diff
+llvm-devel/bin/llvm-dis
+llvm-devel/bin/llvm-dwarfdump
+llvm-devel/bin/llvm-extract
+llvm-devel/bin/llvm-link
+llvm-devel/bin/llvm-mc
+llvm-devel/bin/llvm-mcmarkup
+llvm-devel/bin/llvm-nm
+llvm-devel/bin/llvm-objdump
+llvm-devel/bin/llvm-ranlib
+llvm-devel/bin/llvm-readobj
+llvm-devel/bin/llvm-rtdyld
+llvm-devel/bin/llvm-size
+llvm-devel/bin/llvm-stress
+llvm-devel/bin/llvm-symbolizer
+llvm-devel/bin/llvm-tblgen
+llvm-devel/bin/macho-dump
+llvm-devel/bin/opt
+llvm-devel/include/llvm-c/Analysis.h
+llvm-devel/include/llvm-c/BitReader.h
+llvm-devel/include/llvm-c/BitWriter.h
+llvm-devel/include/llvm-c/Core.h
+llvm-devel/include/llvm-c/Disassembler.h
+llvm-devel/include/llvm-c/ExecutionEngine.h
+llvm-devel/include/llvm-c/Initialization.h
+llvm-devel/include/llvm-c/LinkTimeOptimizer.h
+llvm-devel/include/llvm-c/Linker.h
+llvm-devel/include/llvm-c/Object.h
+llvm-devel/include/llvm-c/Target.h
+llvm-devel/include/llvm-c/TargetMachine.h
+llvm-devel/include/llvm-c/Transforms/IPO.h
+llvm-devel/include/llvm-c/Transforms/PassManagerBuilder.h
+llvm-devel/include/llvm-c/Transforms/Scalar.h
+llvm-devel/include/llvm-c/Transforms/Vectorize.h
+llvm-devel/include/llvm-c/lto.h
+llvm-devel/include/llvm/ADT/APFloat.h
+llvm-devel/include/llvm/ADT/APInt.h
+llvm-devel/include/llvm/ADT/APSInt.h
+llvm-devel/include/llvm/ADT/ArrayRef.h
+llvm-devel/include/llvm/ADT/BitVector.h
+llvm-devel/include/llvm/ADT/DAGDeltaAlgorithm.h
+llvm-devel/include/llvm/ADT/DeltaAlgorithm.h
+llvm-devel/include/llvm/ADT/DenseMap.h
+llvm-devel/include/llvm/ADT/DenseMapInfo.h
+llvm-devel/include/llvm/ADT/DenseSet.h
+llvm-devel/include/llvm/ADT/DepthFirstIterator.h
+llvm-devel/include/llvm/ADT/EquivalenceClasses.h
+llvm-devel/include/llvm/ADT/FoldingSet.h
+llvm-devel/include/llvm/ADT/GraphTraits.h
+llvm-devel/include/llvm/ADT/Hashing.h
+llvm-devel/include/llvm/ADT/ImmutableIntervalMap.h
+llvm-devel/include/llvm/ADT/ImmutableList.h
+llvm-devel/include/llvm/ADT/ImmutableMap.h
+llvm-devel/include/llvm/ADT/ImmutableSet.h
+llvm-devel/include/llvm/ADT/IndexedMap.h
+llvm-devel/include/llvm/ADT/IntEqClasses.h
+llvm-devel/include/llvm/ADT/IntervalMap.h
+llvm-devel/include/llvm/ADT/IntrusiveRefCntPtr.h
+llvm-devel/include/llvm/ADT/MapVector.h
+llvm-devel/include/llvm/ADT/None.h
+llvm-devel/include/llvm/ADT/Optional.h
+llvm-devel/include/llvm/ADT/OwningPtr.h
+llvm-devel/include/llvm/ADT/PackedVector.h
+llvm-devel/include/llvm/ADT/PointerIntPair.h
+llvm-devel/include/llvm/ADT/PointerUnion.h
+llvm-devel/include/llvm/ADT/PostOrderIterator.h
+llvm-devel/include/llvm/ADT/PriorityQueue.h
+llvm-devel/include/llvm/ADT/SCCIterator.h
+llvm-devel/include/llvm/ADT/STLExtras.h
+llvm-devel/include/llvm/ADT/ScopedHashTable.h
+llvm-devel/include/llvm/ADT/SetOperations.h
+llvm-devel/include/llvm/ADT/SetVector.h
+llvm-devel/include/llvm/ADT/SmallBitVector.h
+llvm-devel/include/llvm/ADT/SmallPtrSet.h
+llvm-devel/include/llvm/ADT/SmallSet.h
+llvm-devel/include/llvm/ADT/SmallString.h
+llvm-devel/include/llvm/ADT/SmallVector.h
+llvm-devel/include/llvm/ADT/SparseBitVector.h
+llvm-devel/include/llvm/ADT/SparseMultiSet.h
+llvm-devel/include/llvm/ADT/SparseSet.h
+llvm-devel/include/llvm/ADT/Statistic.h
+llvm-devel/include/llvm/ADT/StringExtras.h
+llvm-devel/include/llvm/ADT/StringMap.h
+llvm-devel/include/llvm/ADT/StringRef.h
+llvm-devel/include/llvm/ADT/StringSet.h
+llvm-devel/include/llvm/ADT/StringSwitch.h
+llvm-devel/include/llvm/ADT/TinyPtrVector.h
+llvm-devel/include/llvm/ADT/Triple.h
+llvm-devel/include/llvm/ADT/Twine.h
+llvm-devel/include/llvm/ADT/UniqueVector.h
+llvm-devel/include/llvm/ADT/ValueMap.h
+llvm-devel/include/llvm/ADT/VariadicFunction.h
+llvm-devel/include/llvm/ADT/edit_distance.h
+llvm-devel/include/llvm/ADT/ilist.h
+llvm-devel/include/llvm/ADT/ilist_node.h
+llvm-devel/include/llvm/Analysis/AliasAnalysis.h
+llvm-devel/include/llvm/Analysis/AliasSetTracker.h
+llvm-devel/include/llvm/Analysis/BlockFrequencyImpl.h
+llvm-devel/include/llvm/Analysis/BlockFrequencyInfo.h
+llvm-devel/include/llvm/Analysis/BranchProbabilityInfo.h
+llvm-devel/include/llvm/Analysis/CFG.h
+llvm-devel/include/llvm/Analysis/CFGPrinter.h
+llvm-devel/include/llvm/Analysis/CallGraph.h
+llvm-devel/include/llvm/Analysis/CallGraphSCCPass.h
+llvm-devel/include/llvm/Analysis/CallPrinter.h
+llvm-devel/include/llvm/Analysis/CaptureTracking.h
+llvm-devel/include/llvm/Analysis/CodeMetrics.h
+llvm-devel/include/llvm/Analysis/ConstantFolding.h
+llvm-devel/include/llvm/Analysis/ConstantsScanner.h
+llvm-devel/include/llvm/Analysis/DOTGraphTraitsPass.h
+llvm-devel/include/llvm/Analysis/DependenceAnalysis.h
+llvm-devel/include/llvm/Analysis/DomPrinter.h
+llvm-devel/include/llvm/Analysis/DominanceFrontier.h
+llvm-devel/include/llvm/Analysis/DominatorInternals.h
+llvm-devel/include/llvm/Analysis/Dominators.h
+llvm-devel/include/llvm/Analysis/FindUsedTypes.h
+llvm-devel/include/llvm/Analysis/IVUsers.h
+llvm-devel/include/llvm/Analysis/InlineCost.h
+llvm-devel/include/llvm/Analysis/InstructionSimplify.h
+llvm-devel/include/llvm/Analysis/Interval.h
+llvm-devel/include/llvm/Analysis/IntervalIterator.h
+llvm-devel/include/llvm/Analysis/IntervalPartition.h
+llvm-devel/include/llvm/Analysis/LazyValueInfo.h
+llvm-devel/include/llvm/Analysis/LibCallAliasAnalysis.h
+llvm-devel/include/llvm/Analysis/LibCallSemantics.h
+llvm-devel/include/llvm/Analysis/Lint.h
+llvm-devel/include/llvm/Analysis/Loads.h
+llvm-devel/include/llvm/Analysis/LoopInfo.h
+llvm-devel/include/llvm/Analysis/LoopInfoImpl.h
+llvm-devel/include/llvm/Analysis/LoopIterator.h
+llvm-devel/include/llvm/Analysis/LoopPass.h
+llvm-devel/include/llvm/Analysis/MemoryBuiltins.h
+llvm-devel/include/llvm/Analysis/MemoryDependenceAnalysis.h
+llvm-devel/include/llvm/Analysis/PHITransAddr.h
+llvm-devel/include/llvm/Analysis/Passes.h
+llvm-devel/include/llvm/Analysis/PostDominators.h
+llvm-devel/include/llvm/Analysis/PtrUseVisitor.h
+llvm-devel/include/llvm/Analysis/RegionInfo.h
+llvm-devel/include/llvm/Analysis/RegionIterator.h
+llvm-devel/include/llvm/Analysis/RegionPass.h
+llvm-devel/include/llvm/Analysis/RegionPrinter.h
+llvm-devel/include/llvm/Analysis/ScalarEvolution.h
+llvm-devel/include/llvm/Analysis/ScalarEvolutionExpander.h
+llvm-devel/include/llvm/Analysis/ScalarEvolutionExpressions.h
+llvm-devel/include/llvm/Analysis/ScalarEvolutionNormalization.h
+llvm-devel/include/llvm/Analysis/SparsePropagation.h
+llvm-devel/include/llvm/Analysis/TargetTransformInfo.h
+llvm-devel/include/llvm/Analysis/Trace.h
+llvm-devel/include/llvm/Analysis/ValueTracking.h
+llvm-devel/include/llvm/Analysis/Verifier.h
+llvm-devel/include/llvm/Assembly/AssemblyAnnotationWriter.h
+llvm-devel/include/llvm/Assembly/Parser.h
+llvm-devel/include/llvm/Assembly/PrintModulePass.h
+llvm-devel/include/llvm/Assembly/Writer.h
+llvm-devel/include/llvm/AutoUpgrade.h
+llvm-devel/include/llvm/Bitcode/BitCodes.h
+llvm-devel/include/llvm/Bitcode/BitstreamReader.h
+llvm-devel/include/llvm/Bitcode/BitstreamWriter.h
+llvm-devel/include/llvm/Bitcode/LLVMBitCodes.h
+llvm-devel/include/llvm/Bitcode/ReaderWriter.h
+llvm-devel/include/llvm/CodeGen/Analysis.h
+llvm-devel/include/llvm/CodeGen/AsmPrinter.h
+llvm-devel/include/llvm/CodeGen/CalcSpillWeights.h
+llvm-devel/include/llvm/CodeGen/CallingConvLower.h
+llvm-devel/include/llvm/CodeGen/CommandFlags.h
+llvm-devel/include/llvm/CodeGen/DAGCombine.h
+llvm-devel/include/llvm/CodeGen/DFAPacketizer.h
+llvm-devel/include/llvm/CodeGen/EdgeBundles.h
+llvm-devel/include/llvm/CodeGen/FastISel.h
+llvm-devel/include/llvm/CodeGen/FunctionLoweringInfo.h
+llvm-devel/include/llvm/CodeGen/GCMetadata.h
+llvm-devel/include/llvm/CodeGen/GCMetadataPrinter.h
+llvm-devel/include/llvm/CodeGen/GCStrategy.h
+llvm-devel/include/llvm/CodeGen/GCs.h
+llvm-devel/include/llvm/CodeGen/ISDOpcodes.h
+llvm-devel/include/llvm/CodeGen/IntrinsicLowering.h
+llvm-devel/include/llvm/CodeGen/JITCodeEmitter.h
+llvm-devel/include/llvm/CodeGen/LatencyPriorityQueue.h
+llvm-devel/include/llvm/CodeGen/LexicalScopes.h
+llvm-devel/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
+llvm-devel/include/llvm/CodeGen/LinkAllCodegenComponents.h
+llvm-devel/include/llvm/CodeGen/LiveInterval.h
+llvm-devel/include/llvm/CodeGen/LiveIntervalAnalysis.h
+llvm-devel/include/llvm/CodeGen/LiveIntervalUnion.h
+llvm-devel/include/llvm/CodeGen/LiveRangeEdit.h
+llvm-devel/include/llvm/CodeGen/LiveRegMatrix.h
+llvm-devel/include/llvm/CodeGen/LiveRegUnits.h
+llvm-devel/include/llvm/CodeGen/LiveStackAnalysis.h
+llvm-devel/include/llvm/CodeGen/LiveVariables.h
+llvm-devel/include/llvm/CodeGen/MachORelocation.h
+llvm-devel/include/llvm/CodeGen/MachineBasicBlock.h
+llvm-devel/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
+llvm-devel/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
+llvm-devel/include/llvm/CodeGen/MachineCodeEmitter.h
+llvm-devel/include/llvm/CodeGen/MachineCodeInfo.h
+llvm-devel/include/llvm/CodeGen/MachineConstantPool.h
+llvm-devel/include/llvm/CodeGen/MachineDominators.h
+llvm-devel/include/llvm/CodeGen/MachineFrameInfo.h
+llvm-devel/include/llvm/CodeGen/MachineFunction.h
+llvm-devel/include/llvm/CodeGen/MachineFunctionAnalysis.h
+llvm-devel/include/llvm/CodeGen/MachineFunctionPass.h
+llvm-devel/include/llvm/CodeGen/MachineInstr.h
+llvm-devel/include/llvm/CodeGen/MachineInstrBuilder.h
+llvm-devel/include/llvm/CodeGen/MachineInstrBundle.h
+llvm-devel/include/llvm/CodeGen/MachineJumpTableInfo.h
+llvm-devel/include/llvm/CodeGen/MachineLoopInfo.h
+llvm-devel/include/llvm/CodeGen/MachineMemOperand.h
+llvm-devel/include/llvm/CodeGen/MachineModuleInfo.h
+llvm-devel/include/llvm/CodeGen/MachineModuleInfoImpls.h
+llvm-devel/include/llvm/CodeGen/MachineOperand.h
+llvm-devel/include/llvm/CodeGen/MachinePassRegistry.h
+llvm-devel/include/llvm/CodeGen/MachinePostDominators.h
+llvm-devel/include/llvm/CodeGen/MachineRegisterInfo.h
+llvm-devel/include/llvm/CodeGen/MachineRelocation.h
+llvm-devel/include/llvm/CodeGen/MachineSSAUpdater.h
+llvm-devel/include/llvm/CodeGen/MachineScheduler.h
+llvm-devel/include/llvm/CodeGen/MachineTraceMetrics.h
+llvm-devel/include/llvm/CodeGen/PBQP/Graph.h
+llvm-devel/include/llvm/CodeGen/PBQP/HeuristicBase.h
+llvm-devel/include/llvm/CodeGen/PBQP/HeuristicSolver.h
+llvm-devel/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h
+llvm-devel/include/llvm/CodeGen/PBQP/Math.h
+llvm-devel/include/llvm/CodeGen/PBQP/Solution.h
+llvm-devel/include/llvm/CodeGen/Passes.h
+llvm-devel/include/llvm/CodeGen/PseudoSourceValue.h
+llvm-devel/include/llvm/CodeGen/RegAllocPBQP.h
+llvm-devel/include/llvm/CodeGen/RegAllocRegistry.h
+llvm-devel/include/llvm/CodeGen/RegisterClassInfo.h
+llvm-devel/include/llvm/CodeGen/RegisterPressure.h
+llvm-devel/include/llvm/CodeGen/RegisterScavenging.h
+llvm-devel/include/llvm/CodeGen/ResourcePriorityQueue.h
+llvm-devel/include/llvm/CodeGen/RuntimeLibcalls.h
+llvm-devel/include/llvm/CodeGen/ScheduleDAG.h
+llvm-devel/include/llvm/CodeGen/ScheduleDAGInstrs.h
+llvm-devel/include/llvm/CodeGen/ScheduleDFS.h
+llvm-devel/include/llvm/CodeGen/ScheduleHazardRecognizer.h
+llvm-devel/include/llvm/CodeGen/SchedulerRegistry.h
+llvm-devel/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
+llvm-devel/include/llvm/CodeGen/SelectionDAG.h
+llvm-devel/include/llvm/CodeGen/SelectionDAGISel.h
+llvm-devel/include/llvm/CodeGen/SelectionDAGNodes.h
+llvm-devel/include/llvm/CodeGen/SlotIndexes.h
+llvm-devel/include/llvm/CodeGen/StackMaps.h
+llvm-devel/include/llvm/CodeGen/StackProtector.h
+llvm-devel/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+llvm-devel/include/llvm/CodeGen/TargetSchedule.h
+llvm-devel/include/llvm/CodeGen/ValueTypes.h
+llvm-devel/include/llvm/CodeGen/ValueTypes.td
+llvm-devel/include/llvm/CodeGen/VirtRegMap.h
+llvm-devel/include/llvm/Config/AsmParsers.def
+llvm-devel/include/llvm/Config/AsmPrinters.def
+llvm-devel/include/llvm/Config/Disassemblers.def
+llvm-devel/include/llvm/Config/Targets.def
+llvm-devel/include/llvm/Config/config.h
+llvm-devel/include/llvm/Config/llvm-config.h
+llvm-devel/include/llvm/DIBuilder.h
+llvm-devel/include/llvm/DebugInfo.h
+llvm-devel/include/llvm/DebugInfo/DIContext.h
+llvm-devel/include/llvm/DebugInfo/DWARFFormValue.h
+llvm-devel/include/llvm/ExecutionEngine/ExecutionEngine.h
+llvm-devel/include/llvm/ExecutionEngine/GenericValue.h
+llvm-devel/include/llvm/ExecutionEngine/Interpreter.h
+llvm-devel/include/llvm/ExecutionEngine/JIT.h
+llvm-devel/include/llvm/ExecutionEngine/JITEventListener.h
+llvm-devel/include/llvm/ExecutionEngine/JITMemoryManager.h
+llvm-devel/include/llvm/ExecutionEngine/MCJIT.h
+llvm-devel/include/llvm/ExecutionEngine/OProfileWrapper.h
+llvm-devel/include/llvm/ExecutionEngine/ObjectBuffer.h
+llvm-devel/include/llvm/ExecutionEngine/ObjectCache.h
+llvm-devel/include/llvm/ExecutionEngine/ObjectImage.h
+llvm-devel/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
+llvm-devel/include/llvm/ExecutionEngine/RuntimeDyld.h
+llvm-devel/include/llvm/ExecutionEngine/SectionMemoryManager.h
+llvm-devel/include/llvm/GVMaterializer.h
+llvm-devel/include/llvm/IR/Argument.h
+llvm-devel/include/llvm/IR/Attributes.h
+llvm-devel/include/llvm/IR/BasicBlock.h
+llvm-devel/include/llvm/IR/CallingConv.h
+llvm-devel/include/llvm/IR/Constant.h
+llvm-devel/include/llvm/IR/Constants.h
+llvm-devel/include/llvm/IR/DataLayout.h
+llvm-devel/include/llvm/IR/DerivedTypes.h
+llvm-devel/include/llvm/IR/Function.h
+llvm-devel/include/llvm/IR/GlobalAlias.h
+llvm-devel/include/llvm/IR/GlobalValue.h
+llvm-devel/include/llvm/IR/GlobalVariable.h
+llvm-devel/include/llvm/IR/IRBuilder.h
+llvm-devel/include/llvm/IR/InlineAsm.h
+llvm-devel/include/llvm/IR/InstrTypes.h
+llvm-devel/include/llvm/IR/Instruction.def
+llvm-devel/include/llvm/IR/Instruction.h
+llvm-devel/include/llvm/IR/Instructions.h
+llvm-devel/include/llvm/IR/IntrinsicInst.h
+llvm-devel/include/llvm/IR/Intrinsics.gen
+llvm-devel/include/llvm/IR/Intrinsics.h
+llvm-devel/include/llvm/IR/Intrinsics.td
+llvm-devel/include/llvm/IR/IntrinsicsX86.td
+llvm-devel/include/llvm/IR/LLVMContext.h
+llvm-devel/include/llvm/IR/MDBuilder.h
+llvm-devel/include/llvm/IR/Metadata.h
+llvm-devel/include/llvm/IR/Module.h
+llvm-devel/include/llvm/IR/OperandTraits.h
+llvm-devel/include/llvm/IR/Operator.h
+llvm-devel/include/llvm/IR/SymbolTableListTraits.h
+llvm-devel/include/llvm/IR/Type.h
+llvm-devel/include/llvm/IR/TypeBuilder.h
+llvm-devel/include/llvm/IR/TypeFinder.h
+llvm-devel/include/llvm/IR/Use.h
+llvm-devel/include/llvm/IR/User.h
+llvm-devel/include/llvm/IR/Value.h
+llvm-devel/include/llvm/IR/ValueSymbolTable.h
+llvm-devel/include/llvm/IRReader/IRReader.h
+llvm-devel/include/llvm/InitializePasses.h
+llvm-devel/include/llvm/InstVisitor.h
+llvm-devel/include/llvm/LTO/LTOCodeGenerator.h
+llvm-devel/include/llvm/LTO/LTOModule.h
+llvm-devel/include/llvm/LinkAllIR.h
+llvm-devel/include/llvm/LinkAllPasses.h
+llvm-devel/include/llvm/Linker.h
+llvm-devel/include/llvm/MC/MCAsmBackend.h
+llvm-devel/include/llvm/MC/MCAsmInfo.h
+llvm-devel/include/llvm/MC/MCAsmInfoCOFF.h
+llvm-devel/include/llvm/MC/MCAsmInfoDarwin.h
+llvm-devel/include/llvm/MC/MCAsmInfoELF.h
+llvm-devel/include/llvm/MC/MCAsmLayout.h
+llvm-devel/include/llvm/MC/MCAssembler.h
+llvm-devel/include/llvm/MC/MCAtom.h
+llvm-devel/include/llvm/MC/MCCodeEmitter.h
+llvm-devel/include/llvm/MC/MCCodeGenInfo.h
+llvm-devel/include/llvm/MC/MCContext.h
+llvm-devel/include/llvm/MC/MCDirectives.h
+llvm-devel/include/llvm/MC/MCDisassembler.h
+llvm-devel/include/llvm/MC/MCDwarf.h
+llvm-devel/include/llvm/MC/MCELF.h
+llvm-devel/include/llvm/MC/MCELFObjectWriter.h
+llvm-devel/include/llvm/MC/MCELFStreamer.h
+llvm-devel/include/llvm/MC/MCELFSymbolFlags.h
+llvm-devel/include/llvm/MC/MCExpr.h
+llvm-devel/include/llvm/MC/MCExternalSymbolizer.h
+llvm-devel/include/llvm/MC/MCFixedLenDisassembler.h
+llvm-devel/include/llvm/MC/MCFixup.h
+llvm-devel/include/llvm/MC/MCFixupKindInfo.h
+llvm-devel/include/llvm/MC/MCFunction.h
+llvm-devel/include/llvm/MC/MCInst.h
+llvm-devel/include/llvm/MC/MCInstBuilder.h
+llvm-devel/include/llvm/MC/MCInstPrinter.h
+llvm-devel/include/llvm/MC/MCInstrAnalysis.h
+llvm-devel/include/llvm/MC/MCInstrDesc.h
+llvm-devel/include/llvm/MC/MCInstrInfo.h
+llvm-devel/include/llvm/MC/MCInstrItineraries.h
+llvm-devel/include/llvm/MC/MCLabel.h
+llvm-devel/include/llvm/MC/MCMachOSymbolFlags.h
+llvm-devel/include/llvm/MC/MCMachObjectWriter.h
+llvm-devel/include/llvm/MC/MCModule.h
+llvm-devel/include/llvm/MC/MCModuleYAML.h
+llvm-devel/include/llvm/MC/MCObjectDisassembler.h
+llvm-devel/include/llvm/MC/MCObjectFileInfo.h
+llvm-devel/include/llvm/MC/MCObjectStreamer.h
+llvm-devel/include/llvm/MC/MCObjectSymbolizer.h
+llvm-devel/include/llvm/MC/MCObjectWriter.h
+llvm-devel/include/llvm/MC/MCParser/AsmCond.h
+llvm-devel/include/llvm/MC/MCParser/AsmLexer.h
+llvm-devel/include/llvm/MC/MCParser/MCAsmLexer.h
+llvm-devel/include/llvm/MC/MCParser/MCAsmParser.h
+llvm-devel/include/llvm/MC/MCParser/MCAsmParserExtension.h
+llvm-devel/include/llvm/MC/MCParser/MCParsedAsmOperand.h
+llvm-devel/include/llvm/MC/MCRegisterInfo.h
+llvm-devel/include/llvm/MC/MCRelocationInfo.h
+llvm-devel/include/llvm/MC/MCSchedule.h
+llvm-devel/include/llvm/MC/MCSection.h
+llvm-devel/include/llvm/MC/MCSectionCOFF.h
+llvm-devel/include/llvm/MC/MCSectionELF.h
+llvm-devel/include/llvm/MC/MCSectionMachO.h
+llvm-devel/include/llvm/MC/MCStreamer.h
+llvm-devel/include/llvm/MC/MCSubtargetInfo.h
+llvm-devel/include/llvm/MC/MCSymbol.h
+llvm-devel/include/llvm/MC/MCSymbolizer.h
+llvm-devel/include/llvm/MC/MCTargetAsmParser.h
+llvm-devel/include/llvm/MC/MCValue.h
+llvm-devel/include/llvm/MC/MCWin64EH.h
+llvm-devel/include/llvm/MC/MCWinCOFFObjectWriter.h
+llvm-devel/include/llvm/MC/MachineLocation.h
+llvm-devel/include/llvm/MC/SectionKind.h
+llvm-devel/include/llvm/MC/SubtargetFeature.h
+llvm-devel/include/llvm/Object/Archive.h
+llvm-devel/include/llvm/Object/Binary.h
+llvm-devel/include/llvm/Object/COFF.h
+llvm-devel/include/llvm/Object/COFFYAML.h
+llvm-devel/include/llvm/Object/ELF.h
+llvm-devel/include/llvm/Object/ELFObjectFile.h
+llvm-devel/include/llvm/Object/ELFTypes.h
+llvm-devel/include/llvm/Object/ELFYAML.h
+llvm-devel/include/llvm/Object/Error.h
+llvm-devel/include/llvm/Object/MachO.h
+llvm-devel/include/llvm/Object/MachOUniversal.h
+llvm-devel/include/llvm/Object/ObjectFile.h
+llvm-devel/include/llvm/Object/RelocVisitor.h
+llvm-devel/include/llvm/Object/YAML.h
+llvm-devel/include/llvm/Option/Arg.h
+llvm-devel/include/llvm/Option/ArgList.h
+llvm-devel/include/llvm/Option/OptParser.td
+llvm-devel/include/llvm/Option/OptSpecifier.h
+llvm-devel/include/llvm/Option/OptTable.h
+llvm-devel/include/llvm/Option/Option.h
+llvm-devel/include/llvm/Pass.h
+llvm-devel/include/llvm/PassAnalysisSupport.h
+llvm-devel/include/llvm/PassManager.h
+llvm-devel/include/llvm/PassManagers.h
+llvm-devel/include/llvm/PassRegistry.h
+llvm-devel/include/llvm/PassSupport.h
+llvm-devel/include/llvm/Support/AIXDataTypesFix.h
+llvm-devel/include/llvm/Support/AlignOf.h
+llvm-devel/include/llvm/Support/Allocator.h
+llvm-devel/include/llvm/Support/ArrayRecycler.h
+llvm-devel/include/llvm/Support/Atomic.h
+llvm-devel/include/llvm/Support/BlockFrequency.h
+llvm-devel/include/llvm/Support/BranchProbability.h
+llvm-devel/include/llvm/Support/CBindingWrapping.h
+llvm-devel/include/llvm/Support/CFG.h
+llvm-devel/include/llvm/Support/COFF.h
+llvm-devel/include/llvm/Support/CallSite.h
+llvm-devel/include/llvm/Support/Capacity.h
+llvm-devel/include/llvm/Support/Casting.h
+llvm-devel/include/llvm/Support/CodeGen.h
+llvm-devel/include/llvm/Support/CommandLine.h
+llvm-devel/include/llvm/Support/Compiler.h
+llvm-devel/include/llvm/Support/Compression.h
+llvm-devel/include/llvm/Support/ConstantFolder.h
+llvm-devel/include/llvm/Support/ConstantRange.h
+llvm-devel/include/llvm/Support/ConvertUTF.h
+llvm-devel/include/llvm/Support/CrashRecoveryContext.h
+llvm-devel/include/llvm/Support/DOTGraphTraits.h
+llvm-devel/include/llvm/Support/DataExtractor.h
+llvm-devel/include/llvm/Support/DataFlow.h
+llvm-devel/include/llvm/Support/DataStream.h
+llvm-devel/include/llvm/Support/DataTypes.h
+llvm-devel/include/llvm/Support/Debug.h
+llvm-devel/include/llvm/Support/DebugLoc.h
+llvm-devel/include/llvm/Support/Disassembler.h
+llvm-devel/include/llvm/Support/Dwarf.h
+llvm-devel/include/llvm/Support/DynamicLibrary.h
+llvm-devel/include/llvm/Support/ELF.h
+llvm-devel/include/llvm/Support/Endian.h
+llvm-devel/include/llvm/Support/Errno.h
+llvm-devel/include/llvm/Support/ErrorHandling.h
+llvm-devel/include/llvm/Support/ErrorOr.h
+llvm-devel/include/llvm/Support/FEnv.h
+llvm-devel/include/llvm/Support/FileOutputBuffer.h
+llvm-devel/include/llvm/Support/FileSystem.h
+llvm-devel/include/llvm/Support/FileUtilities.h
+llvm-devel/include/llvm/Support/Format.h
+llvm-devel/include/llvm/Support/FormattedStream.h
+llvm-devel/include/llvm/Support/GCOV.h
+llvm-devel/include/llvm/Support/GetElementPtrTypeIterator.h
+llvm-devel/include/llvm/Support/GraphWriter.h
+llvm-devel/include/llvm/Support/Host.h
+llvm-devel/include/llvm/Support/IncludeFile.h
+llvm-devel/include/llvm/Support/InstIterator.h
+llvm-devel/include/llvm/Support/LEB128.h
+llvm-devel/include/llvm/Support/LICENSE.TXT
+llvm-devel/include/llvm/Support/LeakDetector.h
+llvm-devel/include/llvm/Support/Locale.h
+llvm-devel/include/llvm/Support/LockFileManager.h
+llvm-devel/include/llvm/Support/MD5.h
+llvm-devel/include/llvm/Support/MachO.h
+llvm-devel/include/llvm/Support/ManagedStatic.h
+llvm-devel/include/llvm/Support/MathExtras.h
+llvm-devel/include/llvm/Support/Memory.h
+llvm-devel/include/llvm/Support/MemoryBuffer.h
+llvm-devel/include/llvm/Support/MemoryObject.h
+llvm-devel/include/llvm/Support/Mutex.h
+llvm-devel/include/llvm/Support/MutexGuard.h
+llvm-devel/include/llvm/Support/NoFolder.h
+llvm-devel/include/llvm/Support/OutputBuffer.h
+llvm-devel/include/llvm/Support/PassNameParser.h
+llvm-devel/include/llvm/Support/Path.h
+llvm-devel/include/llvm/Support/PatternMatch.h
+llvm-devel/include/llvm/Support/PluginLoader.h
+llvm-devel/include/llvm/Support/PointerLikeTypeTraits.h
+llvm-devel/include/llvm/Support/PredIteratorCache.h
+llvm-devel/include/llvm/Support/PrettyStackTrace.h
+llvm-devel/include/llvm/Support/Process.h
+llvm-devel/include/llvm/Support/Program.h
+llvm-devel/include/llvm/Support/RWMutex.h
+llvm-devel/include/llvm/Support/Recycler.h
+llvm-devel/include/llvm/Support/RecyclingAllocator.h
+llvm-devel/include/llvm/Support/Regex.h
+llvm-devel/include/llvm/Support/Registry.h
+llvm-devel/include/llvm/Support/RegistryParser.h
+llvm-devel/include/llvm/Support/SMLoc.h
+llvm-devel/include/llvm/Support/SaveAndRestore.h
+llvm-devel/include/llvm/Support/Signals.h
+llvm-devel/include/llvm/Support/Solaris.h
+llvm-devel/include/llvm/Support/SourceMgr.h
+llvm-devel/include/llvm/Support/StreamableMemoryObject.h
+llvm-devel/include/llvm/Support/StringPool.h
+llvm-devel/include/llvm/Support/StringRefMemoryObject.h
+llvm-devel/include/llvm/Support/SwapByteOrder.h
+llvm-devel/include/llvm/Support/SystemUtils.h
+llvm-devel/include/llvm/Support/TargetFolder.h
+llvm-devel/include/llvm/Support/TargetRegistry.h
+llvm-devel/include/llvm/Support/TargetSelect.h
+llvm-devel/include/llvm/Support/ThreadLocal.h
+llvm-devel/include/llvm/Support/Threading.h
+llvm-devel/include/llvm/Support/TimeValue.h
+llvm-devel/include/llvm/Support/Timer.h
+llvm-devel/include/llvm/Support/ToolOutputFile.h
+llvm-devel/include/llvm/Support/Unicode.h
+llvm-devel/include/llvm/Support/UnicodeCharRanges.h
+llvm-devel/include/llvm/Support/Valgrind.h
+llvm-devel/include/llvm/Support/ValueHandle.h
+llvm-devel/include/llvm/Support/Watchdog.h
+llvm-devel/include/llvm/Support/Win64EH.h
+llvm-devel/include/llvm/Support/YAMLParser.h
+llvm-devel/include/llvm/Support/YAMLTraits.h
+llvm-devel/include/llvm/Support/circular_raw_ostream.h
+llvm-devel/include/llvm/Support/raw_os_ostream.h
+llvm-devel/include/llvm/Support/raw_ostream.h
+llvm-devel/include/llvm/Support/system_error.h
+llvm-devel/include/llvm/Support/type_traits.h
+llvm-devel/include/llvm/TableGen/Error.h
+llvm-devel/include/llvm/TableGen/Main.h
+llvm-devel/include/llvm/TableGen/Record.h
+llvm-devel/include/llvm/TableGen/StringMatcher.h
+llvm-devel/include/llvm/TableGen/StringToOffsetTable.h
+llvm-devel/include/llvm/TableGen/TableGenBackend.h
+llvm-devel/include/llvm/Target/CostTable.h
+llvm-devel/include/llvm/Target/Mangler.h
+llvm-devel/include/llvm/Target/Target.td
+llvm-devel/include/llvm/Target/TargetCallingConv.h
+llvm-devel/include/llvm/Target/TargetCallingConv.td
+llvm-devel/include/llvm/Target/TargetFrameLowering.h
+llvm-devel/include/llvm/Target/TargetInstrInfo.h
+llvm-devel/include/llvm/Target/TargetIntrinsicInfo.h
+llvm-devel/include/llvm/Target/TargetItinerary.td
+llvm-devel/include/llvm/Target/TargetJITInfo.h
+llvm-devel/include/llvm/Target/TargetLibraryInfo.h
+llvm-devel/include/llvm/Target/TargetLowering.h
+llvm-devel/include/llvm/Target/TargetLoweringObjectFile.h
+llvm-devel/include/llvm/Target/TargetMachine.h
+llvm-devel/include/llvm/Target/TargetOpcodes.h
+llvm-devel/include/llvm/Target/TargetOptions.h
+llvm-devel/include/llvm/Target/TargetRegisterInfo.h
+llvm-devel/include/llvm/Target/TargetSchedule.td
+llvm-devel/include/llvm/Target/TargetSelectionDAG.td
+llvm-devel/include/llvm/Target/TargetSelectionDAGInfo.h
+llvm-devel/include/llvm/Target/TargetSubtargetInfo.h
+llvm-devel/include/llvm/Transforms/IPO.h
+llvm-devel/include/llvm/Transforms/IPO/InlinerPass.h
+llvm-devel/include/llvm/Transforms/IPO/PassManagerBuilder.h
+llvm-devel/include/llvm/Transforms/Instrumentation.h
+llvm-devel/include/llvm/Transforms/ObjCARC.h
+llvm-devel/include/llvm/Transforms/Scalar.h
+llvm-devel/include/llvm/Transforms/Utils/BasicBlockUtils.h
+llvm-devel/include/llvm/Transforms/Utils/BuildLibCalls.h
+llvm-devel/include/llvm/Transforms/Utils/BypassSlowDivision.h
+llvm-devel/include/llvm/Transforms/Utils/Cloning.h
+llvm-devel/include/llvm/Transforms/Utils/CmpInstAnalysis.h
+llvm-devel/include/llvm/Transforms/Utils/CodeExtractor.h
+llvm-devel/include/llvm/Transforms/Utils/GlobalStatus.h
+llvm-devel/include/llvm/Transforms/Utils/IntegerDivision.h
+llvm-devel/include/llvm/Transforms/Utils/Local.h
+llvm-devel/include/llvm/Transforms/Utils/LoopUtils.h
+llvm-devel/include/llvm/Transforms/Utils/ModuleUtils.h
+llvm-devel/include/llvm/Transforms/Utils/PromoteMemToReg.h
+llvm-devel/include/llvm/Transforms/Utils/SSAUpdater.h
+llvm-devel/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
+llvm-devel/include/llvm/Transforms/Utils/SimplifyIndVar.h
+llvm-devel/include/llvm/Transforms/Utils/SimplifyLibCalls.h
+llvm-devel/include/llvm/Transforms/Utils/SpecialCaseList.h
+llvm-devel/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
+llvm-devel/include/llvm/Transforms/Utils/UnrollLoop.h
+llvm-devel/include/llvm/Transforms/Utils/ValueMapper.h
+llvm-devel/include/llvm/Transforms/Vectorize.h
+llvm-devel/lib/BugpointPasses.so
+llvm-devel/lib/LLVMHello.so
+llvm-devel/lib/libLLVM-3.4svn.so
+llvm-devel/lib/libLLVM-3.4svn.so.0
+llvm-devel/lib/libLLVMAnalysis.a
+llvm-devel/lib/libLLVMAsmParser.a
+llvm-devel/lib/libLLVMAsmPrinter.a
+llvm-devel/lib/libLLVMBitReader.a
+llvm-devel/lib/libLLVMBitWriter.a
+llvm-devel/lib/libLLVMCodeGen.a
+llvm-devel/lib/libLLVMCore.a
+llvm-devel/lib/libLLVMDebugInfo.a
+llvm-devel/lib/libLLVMExecutionEngine.a
+llvm-devel/lib/libLLVMIRReader.a
+llvm-devel/lib/libLLVMInstCombine.a
+llvm-devel/lib/libLLVMInstrumentation.a
+llvm-devel/lib/libLLVMInterpreter.a
+llvm-devel/lib/libLLVMJIT.a
+llvm-devel/lib/libLLVMLTO.a
+llvm-devel/lib/libLLVMLinker.a
+llvm-devel/lib/libLLVMMC.a
+llvm-devel/lib/libLLVMMCDisassembler.a
+llvm-devel/lib/libLLVMMCJIT.a
+llvm-devel/lib/libLLVMMCParser.a
+llvm-devel/lib/libLLVMObjCARCOpts.a
+llvm-devel/lib/libLLVMObject.a
+llvm-devel/lib/libLLVMOption.a
+llvm-devel/lib/libLLVMRuntimeDyld.a
+llvm-devel/lib/libLLVMScalarOpts.a
+llvm-devel/lib/libLLVMSelectionDAG.a
+llvm-devel/lib/libLLVMSupport.a
+llvm-devel/lib/libLLVMTableGen.a
+llvm-devel/lib/libLLVMTarget.a
+llvm-devel/lib/libLLVMTransformUtils.a
+llvm-devel/lib/libLLVMVectorize.a
+llvm-devel/lib/libLLVMX86AsmParser.a
+llvm-devel/lib/libLLVMX86AsmPrinter.a
+llvm-devel/lib/libLLVMX86CodeGen.a
+llvm-devel/lib/libLLVMX86Desc.a
+llvm-devel/lib/libLLVMX86Disassembler.a
+llvm-devel/lib/libLLVMX86Info.a
+llvm-devel/lib/libLLVMX86Utils.a
+llvm-devel/lib/libLLVMipa.a
+llvm-devel/lib/libLLVMipo.a
+llvm-devel/lib/libLTO.a
+llvm-devel/lib/libLTO.so
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/LitConfig.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/LitTestCase.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/ProgressBar.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/ShCommands.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/ShUtil.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/Test.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/TestRunner.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/TestingConfig.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/__init__.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/discovery.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/main.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/run.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit-devel/util.py
 %%PORTDOCS%%%%DOCSDIR%%/html.tar.gz
+%%PORTDOCS%%%%DOCSDIR%%/html/.buildinfo
 %%PORTDOCS%%%%DOCSDIR%%/html/AliasAnalysis.html
+%%PORTDOCS%%%%DOCSDIR%%/html/AliasAnalysis.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Atomics.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Atomics.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/BitCodeFormat.html
+%%PORTDOCS%%%%DOCSDIR%%/html/BitCodeFormat.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/BranchWeightMetadata.html
+%%PORTDOCS%%%%DOCSDIR%%/html/BranchWeightMetadata.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/Bugpoint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CFEBuildInstrs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Bugpoint.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/CMake.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CMake.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/CodeGenerator.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CodeGenerator.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/CodingStandards.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/FileCheck.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/bugpoint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/lit.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/lli.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-ar.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-as.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-bcanalyzer.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-config.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-diff.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-dis.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-extract.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-ld.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-link.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-nm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-prof.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-ranlib.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvmc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvmgcc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvmgxx.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/manpage.css
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/opt.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/tblgen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CodingStandards.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/CommandLine.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CompilerDriver.html
-%%PORTDOCS%%%%DOCSDIR%%/html/CompilerDriverTutorial.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CommandLine.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/CompilerWriterInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CompilerWriterInfo.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/DebuggingJITedCode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/DebuggingJITedCode.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/DeveloperPolicy.html
+%%PORTDOCS%%%%DOCSDIR%%/html/DeveloperPolicy.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Dummy.html
 %%PORTDOCS%%%%DOCSDIR%%/html/ExceptionHandling.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ExceptionHandling.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/ExtendingLLVM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ExtendingLLVM.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Extensions.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Extensions.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/FAQ.html
-%%PORTDOCS%%%%DOCSDIR%%/html/GCCFEBuildInstrs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/FAQ.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/FileCheck.html
+%%PORTDOCS%%%%DOCSDIR%%/html/FileCheck.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/GarbageCollection.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GarbageCollection.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/GetElementPtr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GetElementPtr.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/GettingStarted.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GettingStarted.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/GettingStartedVS.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GettingStartedVS.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/GoldPlugin.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GoldPlugin.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToAddABuilder.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToAddABuilder.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToBuildOnARM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToBuildOnARM.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToCrossCompileLLVM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToCrossCompileLLVM.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/HowToReleaseLLVM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToReleaseLLVM.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSetUpLLVMStyleRTTI.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSetUpLLVMStyleRTTI.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/HowToSubmitABug.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSubmitABug.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToUseAttributes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToUseAttributes.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToUseInstrMappings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToUseInstrMappings.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LLVMBuild.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LLVMBuild.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl1.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl1.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl2.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl2.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl3.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl3.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl4.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl4.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl5-cfg.png
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl5.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl5.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl6.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl6.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl7.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl7.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl8.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl8.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/LangRef.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangRef.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/Lexicon.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Lexicon.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/LinkTimeOptimization.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LinkTimeOptimization.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJIT-creation.png
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJIT-dyld-load.png
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJIT-engine-builder.png
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJIT-load-object.png
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJIT-load.png
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJIT-resolve-relocations.png
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJITDesignAndImplementation.html
+%%PORTDOCS%%%%DOCSDIR%%/html/MCJITDesignAndImplementation.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/MakefileGuide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/MakefileGuide.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/MarkedUpDisassembly.html
+%%PORTDOCS%%%%DOCSDIR%%/html/MarkedUpDisassembly.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/NVPTXUsage.html
+%%PORTDOCS%%%%DOCSDIR%%/html/NVPTXUsage.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl1.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl1.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl2.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl2.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl3.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl3.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl4.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl4.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl5.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl5.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl6.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl6.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl7.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl7.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl8.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl8.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/Packaging.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Packaging.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/Passes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Passes.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Phabricator.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Phabricator.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/ProgrammersManual.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ProgrammersManual.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/Projects.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Projects.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/ReleaseNotes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ReleaseNotes.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/ReleaseProcess.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ReleaseProcess.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/SegmentedStacks.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SegmentedStacks.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/SourceLevelDebugging.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SourceLevelDebugging.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/SphinxQuickstartTemplate.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SphinxQuickstartTemplate.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/SystemLibrary.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SystemLibrary.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/TableGenFundamentals.html
+%%PORTDOCS%%%%DOCSDIR%%/html/TableGenFundamentals.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/TestSuiteMakefileGuide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/TestSuiteMakefileGuide.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/TestingGuide.html
-%%PORTDOCS%%%%DOCSDIR%%/html/UsingLibraries.html
+%%PORTDOCS%%%%DOCSDIR%%/html/TestingGuide.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Vectorizers.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Vectorizers.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMBackend.html
+%%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMBackend.txt
 %%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMPass.html
+%%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMPass.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/YamlIO.html
+%%PORTDOCS%%%%DOCSDIR%%/html/YamlIO.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/ajax-loader.gif
+%%PORTDOCS%%%%DOCSDIR%%/html/basic.css
+%%PORTDOCS%%%%DOCSDIR%%/html/bugpoint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bugpoint.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/comment-bright.png
+%%PORTDOCS%%%%DOCSDIR%%/html/comment-close.png
+%%PORTDOCS%%%%DOCSDIR%%/html/comment.png
+%%PORTDOCS%%%%DOCSDIR%%/html/contents.png
+%%PORTDOCS%%%%DOCSDIR%%/html/doctools.js
+%%PORTDOCS%%%%DOCSDIR%%/html/down-pressed.png
+%%PORTDOCS%%%%DOCSDIR%%/html/down.png
 %%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css
-%%PORTDOCS%%%%DOCSDIR%%/html/img/Debugging.gif
-%%PORTDOCS%%%%DOCSDIR%%/html/img/libdeps.gif
-%%PORTDOCS%%%%DOCSDIR%%/html/img/lines.gif
-%%PORTDOCS%%%%DOCSDIR%%/html/img/objdeps.gif
-%%PORTDOCS%%%%DOCSDIR%%/html/img/venusflytrap.jpg
+%%PORTDOCS%%%%DOCSDIR%%/html/file.png
+%%PORTDOCS%%%%DOCSDIR%%/html/gcc-loops.png
+%%PORTDOCS%%%%DOCSDIR%%/html/genindex.html
 %%PORTDOCS%%%%DOCSDIR%%/html/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/index.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/jquery.js
+%%PORTDOCS%%%%DOCSDIR%%/html/lines.gif
+%%PORTDOCS%%%%DOCSDIR%%/html/linpack-pc.png
+%%PORTDOCS%%%%DOCSDIR%%/html/lit.html
+%%PORTDOCS%%%%DOCSDIR%%/html/lit.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llc.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/lli.html
+%%PORTDOCS%%%%DOCSDIR%%/html/lli.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-ar.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-ar.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-as.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-as.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-bcanalyzer.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-bcanalyzer.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-build.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-build.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-config.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-config.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-cov.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-cov.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-diff.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-diff.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-dis.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-dis.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-extract.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-extract.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-link.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-link.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-nm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-nm.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-prof.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-prof.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-readobj.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-readobj.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-stress.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-stress.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-symbolizer.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-symbolizer.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-theme.css
 %%PORTDOCS%%%%DOCSDIR%%/html/llvm.css
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl1.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl2.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl3.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl4.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl5.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl6.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl7.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl8.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl1.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl2.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl3.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl4.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl5.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl6.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl7.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl8.html
-%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/index.html
-%%PORTDOCS%%%%DOCSDIR%%/ps/FileCheck.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/bugpoint.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/lit.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llc.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/lli.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-ar.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-as.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-bcanalyzer.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-config.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-diff.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-dis.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-extract.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-ld.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-link.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-nm.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-prof.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-ranlib.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvmc.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvmgcc.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/llvmgxx.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/opt.ps
-%%PORTDOCS%%%%DOCSDIR%%/ps/tblgen.ps
- at dirrm include/llvm/Transforms/Utils
- at dirrm include/llvm/Transforms/IPO
- at dirrm include/llvm/Transforms
- at dirrm include/llvm/Target
- at dirrm include/llvm/Support
- at dirrm include/llvm/Object
- at dirrm include/llvm/MC/MCParser
- at dirrm include/llvm/MC
- at dirrm include/llvm/ExecutionEngine
- at dirrm include/llvm/Config
- at dirrm include/llvm/CompilerDriver
- at dirrm include/llvm/CodeGen/PBQP/Heuristics
- at dirrm include/llvm/CodeGen/PBQP
- at dirrm include/llvm/CodeGen
- at dirrm include/llvm/Bitcode
- at dirrm include/llvm/Assembly
- at dirrm include/llvm/Analysis
- at dirrm include/llvm/ADT
- at dirrm include/llvm-c/Transforms
- at dirrm include/llvm-c
- at dirrm include/llvm
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ps
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/tutorial
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/img
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/CommandGuide
+%%PORTDOCS%%%%DOCSDIR%%/html/logo.png
+%%PORTDOCS%%%%DOCSDIR%%/html/minus.png
+%%PORTDOCS%%%%DOCSDIR%%/html/navigation.png
+%%PORTDOCS%%%%DOCSDIR%%/html/objects.inv
+%%PORTDOCS%%%%DOCSDIR%%/html/opt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/opt.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/plus.png
+%%PORTDOCS%%%%DOCSDIR%%/html/pygments.css
+%%PORTDOCS%%%%DOCSDIR%%/html/search.html
+%%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js
+%%PORTDOCS%%%%DOCSDIR%%/html/searchtools.js
+%%PORTDOCS%%%%DOCSDIR%%/html/tblgen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/tblgen.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/underscore.js
+%%PORTDOCS%%%%DOCSDIR%%/html/up-pressed.png
+%%PORTDOCS%%%%DOCSDIR%%/html/up.png
+%%PORTDOCS%%%%DOCSDIR%%/html/websupport.js
+%%PORTDOCS%%%%DOCSDIR%%/html/yaml2obj.html
+%%PORTDOCS%%%%DOCSDIR%%/html/yaml2obj.txt
+ at dirrm llvm-devel/lib
+ at dirrm llvm-devel/include/llvm/Transforms/Utils
+ at dirrm llvm-devel/include/llvm/Transforms/IPO
+ at dirrm llvm-devel/include/llvm/Transforms
+ at dirrm llvm-devel/include/llvm/Target
+ at dirrm llvm-devel/include/llvm/TableGen
+ at dirrm llvm-devel/include/llvm/Support
+ at dirrm llvm-devel/include/llvm/Option
+ at dirrm llvm-devel/include/llvm/Object
+ at dirrm llvm-devel/include/llvm/MC/MCParser
+ at dirrm llvm-devel/include/llvm/MC
+ at dirrm llvm-devel/include/llvm/LTO
+ at dirrm llvm-devel/include/llvm/IRReader
+ at dirrm llvm-devel/include/llvm/IR
+ at dirrm llvm-devel/include/llvm/ExecutionEngine
+ at dirrm llvm-devel/include/llvm/DebugInfo
+ at dirrm llvm-devel/include/llvm/Config
+ at dirrm llvm-devel/include/llvm/CodeGen/PBQP/Heuristics
+ at dirrm llvm-devel/include/llvm/CodeGen/PBQP
+ at dirrm llvm-devel/include/llvm/CodeGen
+ at dirrm llvm-devel/include/llvm/Bitcode
+ at dirrm llvm-devel/include/llvm/Assembly
+ at dirrm llvm-devel/include/llvm/Analysis
+ at dirrm llvm-devel/include/llvm/ADT
+ at dirrm llvm-devel/include/llvm-c/Transforms
+ at dirrm llvm-devel/include/llvm-c
+ at dirrm llvm-devel/include/llvm
+ at dirrm llvm-devel/include
+ at dirrm llvm-devel/bin
+ at dirrm llvm-devel
+%%LIT%%@dirrm %%PYTHON_SITELIBDIR%%/lit-devel
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/html
 %%PORTDOCS%%@dirrm %%DOCSDIR%%



More information about the Midnightbsd-cvs mailing list