This is an automated email from the git hooks/post-receive script.
git pushed a change to branch master in repository clang.
from f159984 [CUDA] Enable fusing FP ops (-ffp-contract=fast) for CUDA by [...] new 92b5d26 [CUDA] Split device-var-init.cu tests into separate Sema and [...] new f365f5e [CUDA] Do not allow non-empty destructors for global device-s [...] new 52b5c69 [Sema] Fix use after move. Found by ubsan. new 58d65b2 [CUDA] Implement __ldg using intrinsics. new 23d62c0 [analyzer] Fix for PR23790 : constrain return value of strcmp [...] new b384460 [Lexer] Don't merge macro args from different macro files new d1a961e Avoid depending on test inputes that aren't in Inputs new e6ee5c3 Revert incorrect module map changes in r269907 and replace th [...] new 368fcdd Re-alphabetize this file list. new 626b380 CodeGen: address -Wcast-qual warning new b01e846 clang-format: [JS] Treat "for" as a reserved word after a ".". new 3e258a6 clang-format: [JS] sort ES6 imports. new e0ee1c6 [X86][AVX] Full set of AVX intrinsics tests new 6cc5b3e [X86][AVX] Added _mm256_extract_epi64 test new d300e2e [Hexagon] Recognize "s" constraint in inline-asm new 4ca9013 Add all the avx512 flavors to __builtin_cpu_supports's list. new 59a4c8d Eliminate unnecessary file access checks in Clang driver on Windows new 2ebf680 [X86][AVX] Added _mm256_testc_si256/_mm256_testnzc_si256/_mm2 [...] new ad2e1d3 [OpenCL] Allow explicit cast of 0 to event_t. new e36a672 Make __FreeBSD_cc_version predefined macro configurable at bu [...] new 4cf7242 ObjectiveC: canonicalize "kindof id" to "id". new 5c2e21d [OpenCL] Add to_{global|local|private} builtin functions. new f83d521 Update -ffast-math documentation to match reality. new 6316b96 [X86][AVX] Ensure zero-extension of _mm256_extract_epi8 and _ [...] new 809f5c7 Driver: simplify getDynameLinker new c564312 Driver: sink getLinuxDynamicLoader into the Toolchain new a1f7764 [AST] Cleanup comments regarding CXXRecordDecl::isEmpty new a815f7e [driver][mips] Drop support for outdated version of CodeSourc [...] new 349ec41 [driver][mips] Rename some variables to better reflect their [...] new d8ba9d9 [driver][mips] Use target triple mips-mti-linux-gnu for toolc [...] new 27fd355 [driver][mips] Support new versions of MIPS CodeScape toolchains new 6f24f59 [driver][mips] clang-format the code. NFC new c640eca [driver][mips] Follow-up to r270373. Add missed folder. new 4ee625a Fix typo in documentation comment. new 73d10dc Driver: support exherbo's multiarch support new 54f24eb [Clang][AVX512][BUILTIN]adding missing intrinsics for movdaq [...] new fc8ef50 Test commit
The 37 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/UsersManual.rst | 13 + include/clang/AST/DeclCXX.h | 7 +- include/clang/Basic/Builtins.def | 5 + include/clang/Basic/BuiltinsNVPTX.def | 36 + include/clang/Basic/BuiltinsX86.def | 5 + include/clang/Basic/DiagnosticSemaKinds.td | 9 + include/clang/Basic/LangOptions.def | 2 +- include/clang/Driver/Multilib.h | 7 + include/clang/Driver/Options.td | 4 +- include/clang/Format/Format.h | 16 + include/clang/Lex/ModuleMap.h | 2 +- include/clang/Sema/Sema.h | 1 + include/clang/Sema/SemaInternal.h | 3 + lib/AST/DeclCXX.cpp | 19 +- lib/Basic/Targets.cpp | 25 +- lib/CodeGen/BackendUtil.cpp | 2 +- lib/CodeGen/CGBuiltin.cpp | 89 ++ lib/Driver/MSVCToolChain.cpp | 5 +- lib/Driver/ToolChains.cpp | 369 ++++-- lib/Driver/ToolChains.h | 2 + lib/Driver/Tools.cpp | 70 +- lib/Format/CMakeLists.txt | 3 + lib/Format/Format.cpp | 805 +----------- lib/Format/FormatToken.h | 2 + lib/Format/FormatTokenLexer.cpp | 597 +++++++++ lib/Format/FormatTokenLexer.h | 97 ++ lib/Format/SortJavaScriptImports.cpp | 385 ++++++ lib/Format/SortJavaScriptImports.h | 36 + lib/Format/TokenAnalyzer.cpp | 138 ++ lib/Format/TokenAnalyzer.h | 108 ++ lib/Format/TokenAnnotator.cpp | 3 + lib/Headers/CMakeLists.txt | 21 +- lib/Headers/__clang_cuda_intrinsics.h | 256 ++++ lib/Headers/__clang_cuda_runtime_wrapper.h | 6 +- lib/Headers/avx512fintrin.h | 17 + lib/Headers/avx512vlintrin.h | 71 + lib/Headers/avxintrin.h | 10 +- lib/Headers/module.modulemap | 5 +- lib/Lex/TokenLexer.cpp | 3 + lib/Sema/SemaCUDA.cpp | 50 +- lib/Sema/SemaCast.cpp | 16 + lib/Sema/SemaChecking.cpp | 52 + lib/Sema/SemaDecl.cpp | 6 + lib/Sema/SemaLookup.cpp | 3 +- lib/Sema/SemaType.cpp | 9 +- lib/StaticAnalyzer/Checkers/CStringChecker.cpp | 37 +- test/Analysis/string.c | 104 +- test/CodeGen/avx-builtins.c | 1386 +++++++++++++++++++- test/CodeGen/avx512f-builtins.c | 12 + test/CodeGen/avx512vl-builtins.c | 48 + test/CodeGen/builtins-nvptx.c | 106 +- test/CodeGen/hexagon-inline-asm.c | 6 + test/CodeGen/target-builtin-noerror.c | 31 + test/CodeGenCUDA/Inputs/cuda-initializers.h | 145 ++ test/CodeGenCUDA/device-var-init.cu | 375 ++---- test/CodeGenOpenCL/event_t.cl | 2 + test/CodeGenOpenCL/to_addr_builtin.cl | 89 ++ test/CoverageMapping/Inputs/macros.h | 13 + test/CoverageMapping/include-macros.c | 18 + test/Driver/Inputs/mips_cs_tree/bin/.keep | 0 .../lib/gcc/mips-linux-gnu/4.6.3/64/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/64/crtend.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/crtend.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/el/64/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/el/64/crtend.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/el/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/el/crtend.o | 0 .../mips-linux-gnu/4.6.3/include-fixed/64/.keep | 0 .../mips-linux-gnu/4.6.3/include-fixed/el/64/.keep | 0 .../4.6.3/include-fixed/micromips/el/.keep | 0 .../include-fixed/micromips/soft-float/el/.keep | 0 .../4.6.3/include-fixed/mips16/el/.keep | 0 .../4.6.3/include-fixed/mips16/soft-float/el/.keep | 0 .../4.6.3/include-fixed/nan2008/el/.keep | 0 .../4.6.3/include-fixed/soft-float/64/.keep | 0 .../4.6.3/include-fixed/soft-float/el/64/.keep | 0 .../4.6.3/include-fixed/uclibc/el/.keep | 0 .../4.6.3/include-fixed/uclibc/nan2008/el/.keep | 0 .../4.6.3/include-fixed/uclibc/soft-float/el/.keep | 0 .../lib/gcc/mips-linux-gnu/4.6.3/include/.keep | 0 .../gcc/mips-linux-gnu/4.6.3/micromips/crtbegin.o | 0 .../gcc/mips-linux-gnu/4.6.3/micromips/crtend.o | 0 .../mips-linux-gnu/4.6.3/micromips/el/crtbegin.o | 0 .../gcc/mips-linux-gnu/4.6.3/micromips/el/crtend.o | 0 .../4.6.3/micromips/soft-float/crtbegin.o | 0 .../4.6.3/micromips/soft-float/crtend.o | 0 .../4.6.3/micromips/soft-float/el/crtbegin.o | 0 .../4.6.3/micromips/soft-float/el/crtend.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/mips16/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/mips16/crtend.o | 0 .../gcc/mips-linux-gnu/4.6.3/mips16/el/crtbegin.o | 0 .../gcc/mips-linux-gnu/4.6.3/mips16/el/crtend.o | 0 .../4.6.3/mips16/soft-float/crtbegin.o | 0 .../4.6.3/mips16/soft-float/crtend.o | 0 .../4.6.3/mips16/soft-float/el/crtbegin.o | 0 .../4.6.3/mips16/soft-float/el/crtend.o | 0 .../gcc/mips-linux-gnu/4.6.3/nan2008/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/nan2008/crtend.o | 0 .../gcc/mips-linux-gnu/4.6.3/nan2008/el/crtbegin.o | 0 .../gcc/mips-linux-gnu/4.6.3/nan2008/el/crtend.o | 0 .../mips-linux-gnu/4.6.3/soft-float/64/crtbegin.o | 0 .../mips-linux-gnu/4.6.3/soft-float/64/crtend.o | 0 .../gcc/mips-linux-gnu/4.6.3/soft-float/crtbegin.o | 0 .../gcc/mips-linux-gnu/4.6.3/soft-float/crtend.o | 0 .../4.6.3/soft-float/el/64/crtbegin.o | 0 .../mips-linux-gnu/4.6.3/soft-float/el/64/crtend.o | 0 .../mips-linux-gnu/4.6.3/soft-float/el/crtbegin.o | 0 .../mips-linux-gnu/4.6.3/soft-float/el/crtend.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/uclibc/crtbegin.o | 0 .../lib/gcc/mips-linux-gnu/4.6.3/uclibc/crtend.o | 0 .../gcc/mips-linux-gnu/4.6.3/uclibc/el/crtbegin.o | 0 .../gcc/mips-linux-gnu/4.6.3/uclibc/el/crtend.o | 0 .../mips-linux-gnu/4.6.3/uclibc/nan2008/crtbegin.o | 0 .../mips-linux-gnu/4.6.3/uclibc/nan2008/crtend.o | 0 .../4.6.3/uclibc/nan2008/el/crtbegin.o | 0 .../4.6.3/uclibc/nan2008/el/crtend.o | 0 .../4.6.3/uclibc/soft-float/crtbegin.o | 0 .../4.6.3/uclibc/soft-float/crtend.o | 0 .../4.6.3/uclibc/soft-float/el/crtbegin.o | 0 .../4.6.3/uclibc/soft-float/el/crtend.o | 0 .../include/c++/4.6.3/mips-linux-gnu/.keep | 0 .../mips_cs_tree/mips-linux-gnu/lib/el/.keep | 0 .../mips-linux-gnu/lib/micromips/el/.keep | 0 .../lib/micromips/soft-float/el/.keep | 0 .../mips-linux-gnu/lib/mips16/el/.keep | 0 .../mips-linux-gnu/lib/mips16/soft-float/el/.keep | 0 .../mips-linux-gnu/lib/nan2008/el/.keep | 0 .../mips-linux-gnu/lib/soft-float/el/.keep | 0 .../mips-linux-gnu/lib/uclibc/el/.keep | 0 .../mips-linux-gnu/lib/uclibc/nan2008/el/.keep | 0 .../mips-linux-gnu/lib/uclibc/soft-float/el/.keep | 0 .../mips_cs_tree/mips-linux-gnu/lib64/el/.keep | 0 .../mips-linux-gnu/lib64/soft-float/el/.keep | 0 .../mips_cs_tree/mips-linux-gnu/libc/el/lib/.keep | 0 .../mips-linux-gnu/libc/el/lib64/.keep | 0 .../mips-linux-gnu/libc/el/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/el/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/el/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/el/usr/lib64/crt1.o | 0 .../mips-linux-gnu/libc/el/usr/lib64/crti.o | 0 .../mips-linux-gnu/libc/el/usr/lib64/crtn.o | 0 .../mips_cs_tree/mips-linux-gnu/libc/lib/.keep | 0 .../mips_cs_tree/mips-linux-gnu/libc/lib64/.keep | 0 .../mips-linux-gnu/libc/micromips/el/lib/.keep | 0 .../libc/micromips/el/usr/lib/crt1.o | 0 .../libc/micromips/el/usr/lib/crti.o | 0 .../libc/micromips/el/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/micromips/lib/.keep | 0 .../libc/micromips/soft-float/el/lib/.keep | 0 .../libc/micromips/soft-float/el/usr/lib/crt1.o | 0 .../libc/micromips/soft-float/el/usr/lib/crti.o | 0 .../libc/micromips/soft-float/el/usr/lib/crtn.o | 0 .../libc/micromips/soft-float/lib/.keep | 0 .../libc/micromips/soft-float/usr/lib/crt1.o | 0 .../libc/micromips/soft-float/usr/lib/crti.o | 0 .../libc/micromips/soft-float/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/micromips/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/micromips/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/micromips/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/mips16/el/lib/.keep | 0 .../mips-linux-gnu/libc/mips16/el/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/mips16/el/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/mips16/el/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/mips16/lib/.keep | 0 .../libc/mips16/soft-float/el/lib/.keep | 0 .../libc/mips16/soft-float/el/usr/lib/crt1.o | 0 .../libc/mips16/soft-float/el/usr/lib/crti.o | 0 .../libc/mips16/soft-float/el/usr/lib/crtn.o | 0 .../libc/mips16/soft-float/lib/.keep | 0 .../libc/mips16/soft-float/usr/lib/crt1.o | 0 .../libc/mips16/soft-float/usr/lib/crti.o | 0 .../libc/mips16/soft-float/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/mips16/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/mips16/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/mips16/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/nan2008/el/lib/.keep | 0 .../mips-linux-gnu/libc/nan2008/el/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/nan2008/el/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/nan2008/el/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/nan2008/lib/.keep | 0 .../mips-linux-gnu/libc/nan2008/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/nan2008/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/nan2008/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/soft-float/el/lib/.keep | 0 .../mips-linux-gnu/libc/soft-float/el/lib64/.keep | 0 .../libc/soft-float/el/usr/lib/crt1.o | 0 .../libc/soft-float/el/usr/lib/crti.o | 0 .../libc/soft-float/el/usr/lib/crtn.o | 0 .../libc/soft-float/el/usr/lib64/crt1.o | 0 .../libc/soft-float/el/usr/lib64/crti.o | 0 .../libc/soft-float/el/usr/lib64/crtn.o | 0 .../mips-linux-gnu/libc/soft-float/lib/.keep | 0 .../mips-linux-gnu/libc/soft-float/lib64/.keep | 0 .../mips-linux-gnu/libc/soft-float/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/soft-float/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/soft-float/usr/lib/crtn.o | 0 .../libc/soft-float/usr/lib64/crt1.o | 0 .../libc/soft-float/usr/lib64/crti.o | 0 .../libc/soft-float/usr/lib64/crtn.o | 0 .../mips-linux-gnu/libc/uclibc/el/lib/.keep | 0 .../libc/uclibc/el/usr/include/.keep | 0 .../mips-linux-gnu/libc/uclibc/el/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/uclibc/el/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/uclibc/el/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/uclibc/lib/.keep | 0 .../libc/uclibc/nan2008/el/lib/.keep | 0 .../libc/uclibc/nan2008/el/usr/include/.keep | 0 .../libc/uclibc/nan2008/el/usr/lib/crt1.o | 0 .../libc/uclibc/nan2008/el/usr/lib/crti.o | 0 .../libc/uclibc/nan2008/el/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/uclibc/nan2008/lib/.keep | 0 .../libc/uclibc/nan2008/usr/include/.keep | 0 .../libc/uclibc/nan2008/usr/lib/crt1.o | 0 .../libc/uclibc/nan2008/usr/lib/crti.o | 0 .../libc/uclibc/nan2008/usr/lib/crtn.o | 0 .../libc/uclibc/soft-float/el/lib/.keep | 0 .../libc/uclibc/soft-float/el/usr/include/.keep | 0 .../libc/uclibc/soft-float/el/usr/lib/crt1.o | 0 .../libc/uclibc/soft-float/el/usr/lib/crti.o | 0 .../libc/uclibc/soft-float/el/usr/lib/crtn.o | 0 .../libc/uclibc/soft-float/lib/.keep | 0 .../libc/uclibc/soft-float/usr/include/.keep | 0 .../libc/uclibc/soft-float/usr/lib/crt1.o | 0 .../libc/uclibc/soft-float/usr/lib/crti.o | 0 .../libc/uclibc/soft-float/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/uclibc/usr/include/.keep | 0 .../mips-linux-gnu/libc/uclibc/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/uclibc/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/uclibc/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/usr/include/.keep | 0 .../mips-linux-gnu/libc/usr/lib/crt1.o | 0 .../mips-linux-gnu/libc/usr/lib/crti.o | 0 .../mips-linux-gnu/libc/usr/lib/crtn.o | 0 .../mips-linux-gnu/libc/usr/lib64/crt1.o | 0 .../mips-linux-gnu/libc/usr/lib64/crti.o | 0 .../mips-linux-gnu/libc/usr/lib64/crtn.o | 0 .../Inputs/mips_img_v2_tree/bin}/.keep | 0 .../gcc/mips-img-linux-gnu/4.9.2/include}/.keep | 0 .../4.9.2/micromips-r6-hard/lib}/crtbegin.o | 0 .../4.9.2/micromips-r6-hard/lib}/crtend.o | 0 .../4.9.2/micromips-r6-soft/lib}/crtbegin.o | 0 .../4.9.2/micromips-r6-soft/lib}/crtend.o | 0 .../4.9.2/micromipsel-r6-hard/lib}/crtbegin.o | 0 .../4.9.2/micromipsel-r6-hard/lib}/crtend.o | 0 .../4.9.2/micromipsel-r6-soft/lib}/crtbegin.o | 0 .../4.9.2/micromipsel-r6-soft/lib}/crtend.o | 0 .../4.9.2/mips-r6-hard/lib}/crtbegin.o | 0 .../4.9.2/mips-r6-hard/lib}/crtend.o | 0 .../4.9.2/mips-r6-hard/lib32}/crtbegin.o | 0 .../4.9.2/mips-r6-hard/lib32}/crtend.o | 0 .../4.9.2/mips-r6-hard/lib64}/crtbegin.o | 0 .../4.9.2/mips-r6-hard/lib64}/crtend.o | 0 .../4.9.2/mips-r6-soft/lib}/crtbegin.o | 0 .../4.9.2/mips-r6-soft/lib}/crtend.o | 0 .../4.9.2/mipsel-r6-hard/lib}/crtbegin.o | 0 .../4.9.2/mipsel-r6-hard/lib}/crtend.o | 0 .../4.9.2/mipsel-r6-hard/lib32}/crtbegin.o | 0 .../4.9.2/mipsel-r6-hard/lib32}/crtend.o | 0 .../4.9.2/mipsel-r6-hard/lib64}/crtbegin.o | 0 .../4.9.2/mipsel-r6-hard/lib64}/crtend.o | 0 .../4.9.2/mipsel-r6-soft/lib}/crtbegin.o | 0 .../4.9.2/mipsel-r6-soft/lib}/crtend.o | 0 .../mips_img_v2_tree/mips-img-linux-gnu/bin}/.keep | 0 .../micromips-r6-hard/lib}/.keep | 0 .../micromips-r6-soft/lib}/.keep | 0 .../micromipsel-r6-hard/lib}/.keep | 0 .../micromipsel-r6-soft/lib}/.keep | 0 .../mips-img-linux-gnu/mips-r6-hard/lib}/.keep | 0 .../mips-img-linux-gnu/mips-r6-hard/lib32}/.keep | 0 .../mips-img-linux-gnu/mips-r6-hard/lib64}/.keep | 0 .../mips-img-linux-gnu/mips-r6-soft/lib}/.keep | 0 .../mips-img-linux-gnu/mipsel-r6-hard/lib}/.keep | 0 .../mips-img-linux-gnu/mipsel-r6-hard/lib32}/.keep | 0 .../mips-img-linux-gnu/mipsel-r6-hard/lib64}/.keep | 0 .../mips-img-linux-gnu/mipsel-r6-soft/lib}/.keep | 0 .../lib/micromips-r6-hard/lib}/.keep | 0 .../lib/micromips-r6-soft/lib}/.keep | 0 .../lib/micromipsel-r6-hard/lib}/.keep | 0 .../lib/micromipsel-r6-soft/lib}/.keep | 0 .../mips-img-linux-gnu/lib/mips-r6-hard/lib}/.keep | 0 .../lib/mips-r6-hard/lib32}/.keep | 0 .../lib/mips-r6-hard/lib64}/.keep | 0 .../mips-img-linux-gnu/lib/mips-r6-soft/lib}/.keep | 0 .../lib/mipsel-r6-hard/lib}/.keep | 0 .../lib/mipsel-r6-hard/lib32}/.keep | 0 .../lib/mipsel-r6-hard/lib64}/.keep | 0 .../lib/mipsel-r6-soft/lib}/.keep | 0 .../sysroot/micromips-r6-hard/lib}/.keep | 0 .../sysroot/micromips-r6-hard/usr/include}/.keep | 0 .../sysroot/micromips-r6-hard/usr}/lib/crt1.o | 0 .../sysroot/micromips-r6-hard/usr}/lib/crti.o | 0 .../sysroot/micromips-r6-hard/usr}/lib/crtn.o | 0 .../sysroot/micromips-r6-soft/lib}/.keep | 0 .../sysroot/micromips-r6-soft/usr/include}/.keep | 0 .../sysroot/micromips-r6-soft/usr}/lib/crt1.o | 0 .../sysroot/micromips-r6-soft/usr}/lib/crti.o | 0 .../sysroot/micromips-r6-soft/usr}/lib/crtn.o | 0 .../sysroot/micromipsel-r6-hard/lib}/.keep | 0 .../sysroot/micromipsel-r6-hard/usr/include}/.keep | 0 .../sysroot/micromipsel-r6-hard/usr}/lib/crt1.o | 0 .../sysroot/micromipsel-r6-hard/usr}/lib/crti.o | 0 .../sysroot/micromipsel-r6-hard/usr}/lib/crtn.o | 0 .../sysroot/micromipsel-r6-soft/lib}/.keep | 0 .../sysroot/micromipsel-r6-soft/usr/include}/.keep | 0 .../sysroot/micromipsel-r6-soft/usr}/lib/crt1.o | 0 .../sysroot/micromipsel-r6-soft/usr}/lib/crti.o | 0 .../sysroot/micromipsel-r6-soft/usr}/lib/crtn.o | 0 .../sysroot/mips-r6-hard/lib}/.keep | 0 .../sysroot/mips-r6-hard/lib32}/.keep | 0 .../sysroot/mips-r6-hard/lib64}/.keep | 0 .../sysroot/mips-r6-hard/usr/include}/.keep | 0 .../sysroot/mips-r6-hard/usr}/lib/crt1.o | 0 .../sysroot/mips-r6-hard/usr}/lib/crti.o | 0 .../sysroot/mips-r6-hard/usr}/lib/crtn.o | 0 .../sysroot/mips-r6-hard/usr/lib32}/crt1.o | 0 .../sysroot/mips-r6-hard/usr/lib32}/crti.o | 0 .../sysroot/mips-r6-hard/usr/lib32}/crtn.o | 0 .../sysroot/mips-r6-hard/usr/lib64}/crt1.o | 0 .../sysroot/mips-r6-hard/usr/lib64}/crti.o | 0 .../sysroot/mips-r6-hard/usr/lib64}/crtn.o | 0 .../sysroot/mips-r6-soft/lib}/.keep | 0 .../sysroot/mips-r6-soft/usr/include}/.keep | 0 .../sysroot/mips-r6-soft/usr}/lib/crt1.o | 0 .../sysroot/mips-r6-soft/usr}/lib/crti.o | 0 .../sysroot/mips-r6-soft/usr}/lib/crtn.o | 0 .../sysroot/mipsel-r6-hard/lib}/.keep | 0 .../sysroot/mipsel-r6-hard/lib32}/.keep | 0 .../sysroot/mipsel-r6-hard/lib64}/.keep | 0 .../sysroot/mipsel-r6-hard/usr/include}/.keep | 0 .../sysroot/mipsel-r6-hard/usr}/lib/crt1.o | 0 .../sysroot/mipsel-r6-hard/usr}/lib/crti.o | 0 .../sysroot/mipsel-r6-hard/usr}/lib/crtn.o | 0 .../sysroot/mipsel-r6-hard/usr/lib32}/crt1.o | 0 .../sysroot/mipsel-r6-hard/usr/lib32}/crti.o | 0 .../sysroot/mipsel-r6-hard/usr/lib32}/crtn.o | 0 .../sysroot/mipsel-r6-hard/usr/lib64}/crt1.o | 0 .../sysroot/mipsel-r6-hard/usr/lib64}/crti.o | 0 .../sysroot/mipsel-r6-hard/usr/lib64}/crtn.o | 0 .../sysroot/mipsel-r6-soft/lib}/.keep | 0 .../sysroot/mipsel-r6-soft/usr/include}/.keep | 0 .../sysroot/mipsel-r6-soft/usr}/lib/crt1.o | 0 .../sysroot/mipsel-r6-soft/usr}/lib/crti.o | 0 .../sysroot/mipsel-r6-soft/usr}/lib/crtn.o | 0 .../Inputs/mips_mti_tree/bin}/.keep | 0 .../gcc/mips-mti-linux-gnu/4.9.2/include}/.keep | 0 .../micromipsel-r2-hard-nan2008/lib}/crtbegin.o | 0 .../micromipsel-r2-hard-nan2008/lib}/crtend.o | 0 .../4.9.2/micromipsel-r2-soft/lib}/crtbegin.o | 0 .../4.9.2/micromipsel-r2-soft/lib}/crtend.o | 0 .../mips-r2-hard-nan2008-uclibc/lib}/crtbegin.o | 0 .../mips-r2-hard-nan2008-uclibc/lib}/crtend.o | 0 .../4.9.2/mips-r2-hard-nan2008/lib}/crtbegin.o | 0 .../4.9.2/mips-r2-hard-nan2008/lib}/crtend.o | 0 .../4.9.2/mips-r2-hard-uclibc/lib}/crtbegin.o | 0 .../4.9.2/mips-r2-hard-uclibc/lib}/crtend.o | 0 .../4.9.2/mips-r2-hard/lib}/crtbegin.o | 0 .../4.9.2/mips-r2-hard/lib}/crtend.o | 0 .../4.9.2/mips-r2-hard/lib32}/crtbegin.o | 0 .../4.9.2/mips-r2-hard/lib32}/crtend.o | 0 .../4.9.2/mips-r2-hard/lib64}/crtbegin.o | 0 .../4.9.2/mips-r2-hard/lib64}/crtend.o | 0 .../4.9.2/mips-r2-soft/lib}/crtbegin.o | 0 .../4.9.2/mips-r2-soft/lib}/crtend.o | 0 .../mipsel-r2-hard-nan2008-uclibc/lib}/crtbegin.o | 0 .../mipsel-r2-hard-nan2008-uclibc/lib}/crtend.o | 0 .../4.9.2/mipsel-r2-hard-nan2008/lib}/crtbegin.o | 0 .../4.9.2/mipsel-r2-hard-nan2008/lib}/crtend.o | 0 .../4.9.2/mipsel-r2-hard-uclibc/lib}/crtbegin.o | 0 .../4.9.2/mipsel-r2-hard-uclibc/lib}/crtend.o | 0 .../4.9.2/mipsel-r2-hard/lib}/crtbegin.o | 0 .../4.9.2/mipsel-r2-hard/lib}/crtend.o | 0 .../4.9.2/mipsel-r2-hard/lib32}/crtbegin.o | 0 .../4.9.2/mipsel-r2-hard/lib32}/crtend.o | 0 .../4.9.2/mipsel-r2-hard/lib64}/crtbegin.o | 0 .../4.9.2/mipsel-r2-hard/lib64}/crtend.o | 0 .../4.9.2/mipsel-r2-soft/lib}/crtbegin.o | 0 .../4.9.2/mipsel-r2-soft/lib}/crtend.o | 0 .../mips_mti_tree/mips-mti-linux-gnu/bin}/.keep | 0 .../4.9.2/micromipsel-r2-hard-nan2008/lib}/.keep | 0 .../c++/4.9.2/micromipsel-r2-soft/lib}/.keep | 0 .../4.9.2/mips-r2-hard-nan2008-uclibc/lib}/.keep | 0 .../c++/4.9.2/mips-r2-hard-nan2008/lib}/.keep | 0 .../c++/4.9.2/mips-r2-hard-uclibc/lib}/.keep | 0 .../include/c++/4.9.2/mips-r2-hard/lib}/.keep | 0 .../include/c++/4.9.2/mips-r2-hard/lib32}/.keep | 0 .../include/c++/4.9.2/mips-r2-hard/lib64}/.keep | 0 .../include/c++/4.9.2/mips-r2-soft/lib}/.keep | 0 .../4.9.2/mipsel-r2-hard-nan2008-uclibc/lib}/.keep | 0 .../c++/4.9.2/mipsel-r2-hard-nan2008/lib}/.keep | 0 .../c++/4.9.2/mipsel-r2-hard-uclibc/lib}/.keep | 0 .../include/c++/4.9.2/mipsel-r2-hard/lib}/.keep | 0 .../include/c++/4.9.2/mipsel-r2-hard/lib32}/.keep | 0 .../include/c++/4.9.2/mipsel-r2-hard/lib64}/.keep | 0 .../include/c++/4.9.2/mipsel-r2-soft/lib}/.keep | 0 .../lib/micromipsel-r2-hard-nan2008/lib}/.keep | 0 .../lib/micromipsel-r2-soft/lib}/.keep | 0 .../lib/mips-r2-hard-nan2008-uclibc/lib}/.keep | 0 .../lib/mips-r2-hard-nan2008/lib}/.keep | 0 .../lib/mips-r2-hard-uclibc/lib}/.keep | 0 .../mips-mti-linux-gnu/lib/mips-r2-hard/lib}/.keep | 0 .../lib/mips-r2-hard/lib32}/.keep | 0 .../lib/mips-r2-hard/lib64}/.keep | 0 .../mips-mti-linux-gnu/lib/mips-r2-soft/lib}/.keep | 0 .../lib/mipsel-r2-hard-nan2008-uclibc/lib}/.keep | 0 .../lib/mipsel-r2-hard-nan2008/lib}/.keep | 0 .../lib/mipsel-r2-hard-uclibc/lib}/.keep | 0 .../lib/mipsel-r2-hard/lib}/.keep | 0 .../lib/mipsel-r2-hard/lib32}/.keep | 0 .../lib/mipsel-r2-hard/lib64}/.keep | 0 .../lib/mipsel-r2-soft/lib}/.keep | 0 .../sysroot/micromipsel-r2-hard-nan2008/lib}/.keep | 0 .../micromipsel-r2-hard-nan2008/usr/include}/.keep | 0 .../micromipsel-r2-hard-nan2008/usr/lib}/.keep | 0 .../micromipsel-r2-hard-nan2008/usr}/lib/crt1.o | 0 .../micromipsel-r2-hard-nan2008/usr}/lib/crti.o | 0 .../micromipsel-r2-hard-nan2008/usr}/lib/crtn.o | 0 .../sysroot/micromipsel-r2-soft/lib}/.keep | 0 .../sysroot/micromipsel-r2-soft/usr/include}/.keep | 0 .../sysroot/micromipsel-r2-soft/usr/lib}/.keep | 0 .../sysroot/micromipsel-r2-soft/usr}/lib/crt1.o | 0 .../sysroot/micromipsel-r2-soft/usr}/lib/crti.o | 0 .../sysroot/micromipsel-r2-soft/usr}/lib/crtn.o | 0 .../sysroot/mips-r2-hard-nan2008-uclibc/lib}/.keep | 0 .../mips-r2-hard-nan2008-uclibc/usr/include}/.keep | 0 .../mips-r2-hard-nan2008-uclibc/usr/lib}/.keep | 0 .../mips-r2-hard-nan2008-uclibc/usr}/lib/crt1.o | 0 .../mips-r2-hard-nan2008-uclibc/usr}/lib/crti.o | 0 .../mips-r2-hard-nan2008-uclibc/usr}/lib/crtn.o | 0 .../sysroot/mips-r2-hard-nan2008/lib}/.keep | 0 .../mips-r2-hard-nan2008/usr/include}/.keep | 0 .../sysroot/mips-r2-hard-nan2008/usr/lib}/.keep | 0 .../sysroot/mips-r2-hard-nan2008/usr}/lib/crt1.o | 0 .../sysroot/mips-r2-hard-nan2008/usr}/lib/crti.o | 0 .../sysroot/mips-r2-hard-nan2008/usr}/lib/crtn.o | 0 .../sysroot/mips-r2-hard-uclibc/lib}/.keep | 0 .../sysroot/mips-r2-hard-uclibc/usr/include}/.keep | 0 .../sysroot/mips-r2-hard-uclibc/usr/lib}/.keep | 0 .../sysroot/mips-r2-hard-uclibc/usr}/lib/crt1.o | 0 .../sysroot/mips-r2-hard-uclibc/usr}/lib/crti.o | 0 .../sysroot/mips-r2-hard-uclibc/usr}/lib/crtn.o | 0 .../mips_mti_tree/sysroot/mips-r2-hard/lib}/.keep | 0 .../sysroot/mips-r2-hard/lib32}/.keep | 0 .../sysroot/mips-r2-hard/lib64}/.keep | 0 .../sysroot/mips-r2-hard/usr/include}/.keep | 0 .../sysroot/mips-r2-hard/usr/lib}/.keep | 0 .../sysroot/mips-r2-hard/usr}/lib/crt1.o | 0 .../sysroot/mips-r2-hard/usr}/lib/crti.o | 0 .../sysroot/mips-r2-hard/usr}/lib/crtn.o | 0 .../sysroot/mips-r2-hard/usr/lib32}/crt1.o | 0 .../sysroot/mips-r2-hard/usr/lib32}/crti.o | 0 .../sysroot/mips-r2-hard/usr/lib32}/crtn.o | 0 .../sysroot/mips-r2-hard/usr/lib64}/crt1.o | 0 .../sysroot/mips-r2-hard/usr/lib64}/crti.o | 0 .../sysroot/mips-r2-hard/usr/lib64}/crtn.o | 0 .../mips_mti_tree/sysroot/mips-r2-soft/lib}/.keep | 0 .../sysroot/mips-r2-soft/usr/include}/.keep | 0 .../sysroot/mips-r2-soft/usr/lib}/.keep | 0 .../sysroot/mips-r2-soft/usr}/lib/crt1.o | 0 .../sysroot/mips-r2-soft/usr}/lib/crti.o | 0 .../sysroot/mips-r2-soft/usr}/lib/crtn.o | 0 .../mipsel-r2-hard-nan2008-uclibc/lib}/.keep | 0 .../usr/include}/.keep | 0 .../mipsel-r2-hard-nan2008-uclibc/usr/lib}/.keep | 0 .../mipsel-r2-hard-nan2008-uclibc/usr}/lib/crt1.o | 0 .../mipsel-r2-hard-nan2008-uclibc/usr}/lib/crti.o | 0 .../mipsel-r2-hard-nan2008-uclibc/usr}/lib/crtn.o | 0 .../sysroot/mipsel-r2-hard-nan2008/lib}/.keep | 0 .../mipsel-r2-hard-nan2008/usr/include}/.keep | 0 .../sysroot/mipsel-r2-hard-nan2008/usr/lib}/.keep | 0 .../sysroot/mipsel-r2-hard-nan2008/usr}/lib/crt1.o | 0 .../sysroot/mipsel-r2-hard-nan2008/usr}/lib/crti.o | 0 .../sysroot/mipsel-r2-hard-nan2008/usr}/lib/crtn.o | 0 .../sysroot/mipsel-r2-hard-uclibc/lib}/.keep | 0 .../mipsel-r2-hard-uclibc/usr/include}/.keep | 0 .../sysroot/mipsel-r2-hard-uclibc/usr/lib}/.keep | 0 .../sysroot/mipsel-r2-hard-uclibc/usr}/lib/crt1.o | 0 .../sysroot/mipsel-r2-hard-uclibc/usr}/lib/crti.o | 0 .../sysroot/mipsel-r2-hard-uclibc/usr}/lib/crtn.o | 0 .../sysroot/mipsel-r2-hard/lib}/.keep | 0 .../sysroot/mipsel-r2-hard/lib32}/.keep | 0 .../sysroot/mipsel-r2-hard/lib64}/.keep | 0 .../sysroot/mipsel-r2-hard/usr/include}/.keep | 0 .../sysroot/mipsel-r2-hard/usr/lib}/.keep | 0 .../sysroot/mipsel-r2-hard/usr}/lib/crt1.o | 0 .../sysroot/mipsel-r2-hard/usr}/lib/crti.o | 0 .../sysroot/mipsel-r2-hard/usr}/lib/crtn.o | 0 .../sysroot/mipsel-r2-hard/usr/lib32}/crt1.o | 0 .../sysroot/mipsel-r2-hard/usr/lib32}/crti.o | 0 .../sysroot/mipsel-r2-hard/usr/lib32}/crtn.o | 0 .../sysroot/mipsel-r2-hard/usr/lib64}/crt1.o | 0 .../sysroot/mipsel-r2-hard/usr/lib64}/crti.o | 0 .../sysroot/mipsel-r2-hard/usr/lib64}/crtn.o | 0 .../sysroot/mipsel-r2-soft/lib}/.keep | 0 .../sysroot/mipsel-r2-soft/usr/include}/.keep | 0 .../sysroot/mipsel-r2-soft/usr/lib}/.keep | 0 .../sysroot/mipsel-r2-soft/usr}/lib/crt1.o | 0 .../sysroot/mipsel-r2-soft/usr}/lib/crti.o | 0 .../sysroot/mipsel-r2-soft/usr}/lib/crtn.o | 0 test/Driver/dyld-prefix.c | 6 +- test/Driver/linux-ld.c | 40 +- test/Driver/mips-cs.cpp | 696 ---------- test/Driver/mips-fsf.cpp | 208 +-- test/Driver/mips-img-v2.cpp | 325 +++++ test/Driver/mips-mti.cpp | 433 ++++++ test/SemaCUDA/Inputs/cuda-initializers.h | 145 ++ test/{CodeGenCUDA => SemaCUDA}/device-var-init.cu | 298 +---- test/SemaObjC/kindof.m | 23 +- test/SemaOpenCL/event_t.cl | 1 + test/SemaOpenCL/to_addr_builtin.cl | 54 + unittests/Format/CMakeLists.txt | 1 + unittests/Format/FormatTestJS.cpp | 1 + unittests/Format/SortImportsTestJS.cpp | 201 +++ unittests/Lex/LexerTest.cpp | 26 +- 514 files changed, 5786 insertions(+), 2434 deletions(-) create mode 100644 lib/Format/FormatTokenLexer.cpp create mode 100644 lib/Format/FormatTokenLexer.h create mode 100644 lib/Format/SortJavaScriptImports.cpp create mode 100644 lib/Format/SortJavaScriptImports.h create mode 100644 lib/Format/TokenAnalyzer.cpp create mode 100644 lib/Format/TokenAnalyzer.h create mode 100644 lib/Headers/__clang_cuda_intrinsics.h create mode 100644 test/CodeGenCUDA/Inputs/cuda-initializers.h create mode 100644 test/CodeGenOpenCL/to_addr_builtin.cl create mode 100644 test/CoverageMapping/Inputs/macros.h create mode 100644 test/CoverageMapping/include-macros.c delete mode 100644 test/Driver/Inputs/mips_cs_tree/bin/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/64 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/64 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/cr [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/crtend.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/el [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/el [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/el [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/el [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/in [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/mi [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/na [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/na [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/na [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/na [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/lib/gcc/mips-linux-gnu/4.6.3/uc [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/include/c++/4.6. [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/micromips/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/micromips/so [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/mips16/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/mips16/soft- [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/nan2008/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/soft-float/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/uclibc/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/uclibc/nan20 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib/uclibc/soft- [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib64/el/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/lib64/soft-float [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/lib/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/lib64/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/usr/lib/crt1.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/usr/lib/crti.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/usr/lib/crtn.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/usr/lib6 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/usr/lib6 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/el/usr/lib6 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/lib/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/lib64/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/e [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/e [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/e [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/e [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/l [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/s [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/micromips/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/el/l [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/lib/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/mips16/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/el/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/el/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/el/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/el/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/lib/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/usr [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/usr [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/nan2008/usr [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/soft-float/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/el/l [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/el/u [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/lib/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/nan2 [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/soft [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/uclibc/usr/ [...] delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/include/.keep delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/lib/crt1.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/lib/crti.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/lib/crtn.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/lib64/crt1.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/lib64/crti.o delete mode 100644 test/Driver/Inputs/mips_cs_tree/mips-linux-gnu/libc/usr/lib64/crtn.o copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/bin}/.kee [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/lib/gcc/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/mips-img- [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_i [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_img_v2_tree/sysroot/m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_img_v [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/bin}/.keep (100%) copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/lib/gcc/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/lib/gcc-cross/arm-linux-gnueabihf [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/mips-mti-lin [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/micr [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/micr [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/micr [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/micr [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/micr [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/micr [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf/lib => mips_m [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/{PCH/Inputs/badpch-dir.h.gch => Driver/Inputs/mips_mti_tree/sysroot/mips [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] copy test/Driver/Inputs/{x86-64_ubuntu_13.10/usr/arm-linux-gnueabihf => mips_mti_t [...] delete mode 100644 test/Driver/mips-cs.cpp create mode 100644 test/Driver/mips-img-v2.cpp create mode 100644 test/Driver/mips-mti.cpp create mode 100644 test/SemaCUDA/Inputs/cuda-initializers.h copy test/{CodeGenCUDA => SemaCUDA}/device-var-init.cu (53%) create mode 100644 test/SemaOpenCL/to_addr_builtin.cl create mode 100644 unittests/Format/SortImportsTestJS.cpp