Index: projects/clang700-import/lib/clang/libllvmminimal/Makefile =================================================================== --- projects/clang700-import/lib/clang/libllvmminimal/Makefile (revision 336988) +++ projects/clang700-import/lib/clang/libllvmminimal/Makefile (revision 336989) @@ -1,70 +1,73 @@ # $FreeBSD$ .include "../llvm.pre.mk" LIB= llvmminimal INTERNALLIB= SRCDIR= lib SRCS+= Support/APFloat.cpp SRCS+= Support/APInt.cpp SRCS+= Support/Atomic.cpp SRCS+= Support/CodeGenCoverage.cpp SRCS+= Support/CommandLine.cpp SRCS+= Support/ConvertUTF.cpp SRCS+= Support/ConvertUTFWrapper.cpp SRCS+= Support/Debug.cpp SRCS+= Support/Errno.cpp SRCS+= Support/Error.cpp SRCS+= Support/ErrorHandling.cpp SRCS+= Support/FoldingSet.cpp SRCS+= Support/FormattedStream.cpp SRCS+= Support/Hashing.cpp SRCS+= Support/Host.cpp SRCS+= Support/IntEqClasses.cpp +SRCS+= Support/JSON.cpp SRCS+= Support/Locale.cpp SRCS+= Support/LowLevelType.cpp SRCS+= Support/MD5.cpp SRCS+= Support/ManagedStatic.cpp SRCS+= Support/MemoryBuffer.cpp SRCS+= Support/Mutex.cpp SRCS+= Support/NativeFormatting.cpp SRCS+= Support/Path.cpp SRCS+= Support/PrettyStackTrace.cpp SRCS+= Support/Process.cpp SRCS+= Support/Program.cpp SRCS+= Support/Regex.cpp SRCS+= Support/Signals.cpp SRCS+= Support/SmallPtrSet.cpp SRCS+= Support/SmallVector.cpp SRCS+= Support/SourceMgr.cpp SRCS+= Support/Statistic.cpp SRCS+= Support/StringExtras.cpp SRCS+= Support/StringMap.cpp SRCS+= Support/StringRef.cpp SRCS+= Support/StringSaver.cpp SRCS+= Support/TargetParser.cpp SRCS+= Support/Threading.cpp SRCS+= Support/Timer.cpp SRCS+= Support/ToolOutputFile.cpp SRCS+= Support/Triple.cpp SRCS+= Support/Twine.cpp SRCS+= Support/Unicode.cpp +SRCS+= Support/WithColor.cpp SRCS+= Support/circular_raw_ostream.cpp SRCS+= Support/raw_ostream.cpp SRCS+= Support/regcomp.c SRCS+= Support/regerror.c SRCS+= Support/regexec.c SRCS+= Support/regfree.c SRCS+= Support/regstrlcpy.c SRCS+= TableGen/Error.cpp +SRCS+= TableGen/JSONBackend.cpp SRCS+= TableGen/Main.cpp SRCS+= TableGen/Record.cpp SRCS+= TableGen/SetTheory.cpp SRCS+= TableGen/StringMatcher.cpp SRCS+= TableGen/TGLexer.cpp SRCS+= TableGen/TGParser.cpp SRCS+= TableGen/TableGenBackend.cpp .include "../llvm.build.mk" .include Index: projects/clang700-import/usr.bin/clang/llvm-tblgen/Makefile =================================================================== --- projects/clang700-import/usr.bin/clang/llvm-tblgen/Makefile (revision 336988) +++ projects/clang700-import/usr.bin/clang/llvm-tblgen/Makefile (revision 336989) @@ -1,50 +1,53 @@ # $FreeBSD$ PROG_CXX= llvm-tblgen SRCDIR= utils/TableGen SRCS+= AsmMatcherEmitter.cpp SRCS+= AsmWriterEmitter.cpp SRCS+= AsmWriterInst.cpp SRCS+= Attributes.cpp SRCS+= CTagsEmitter.cpp SRCS+= CallingConvEmitter.cpp SRCS+= CodeEmitterGen.cpp SRCS+= CodeGenDAGPatterns.cpp SRCS+= CodeGenHwModes.cpp SRCS+= CodeGenInstruction.cpp SRCS+= CodeGenMapTable.cpp SRCS+= CodeGenRegisters.cpp SRCS+= CodeGenSchedule.cpp SRCS+= CodeGenTarget.cpp SRCS+= DAGISelEmitter.cpp SRCS+= DAGISelMatcher.cpp SRCS+= DAGISelMatcherEmitter.cpp SRCS+= DAGISelMatcherGen.cpp SRCS+= DAGISelMatcherOpt.cpp SRCS+= DFAPacketizerEmitter.cpp SRCS+= DisassemblerEmitter.cpp SRCS+= FastISelEmitter.cpp SRCS+= FixedLenDecoderEmitter.cpp SRCS+= GlobalISelEmitter.cpp SRCS+= InfoByHwMode.cpp SRCS+= InstrDocsEmitter.cpp SRCS+= InstrInfoEmitter.cpp SRCS+= IntrinsicEmitter.cpp SRCS+= OptParserEmitter.cpp +SRCS+= PredicateExpander.cpp SRCS+= PseudoLoweringEmitter.cpp +SRCS+= RISCVCompressInstEmitter.cpp SRCS+= RegisterBankEmitter.cpp SRCS+= RegisterInfoEmitter.cpp SRCS+= SDNodeProperties.cpp SRCS+= SearchableTableEmitter.cpp SRCS+= SubtargetEmitter.cpp SRCS+= SubtargetFeatureInfo.cpp SRCS+= TableGen.cpp SRCS+= Types.cpp +SRCS+= WebAssemblyDisassemblerEmitter.cpp SRCS+= X86DisassemblerTables.cpp SRCS+= X86EVEX2VEXTablesEmitter.cpp SRCS+= X86FoldTablesEmitter.cpp SRCS+= X86ModRMFilters.cpp SRCS+= X86RecognizableInstr.cpp .include "../llvm.prog.mk"