svn commit: r360661 - in stable/11: . contrib/llvm-project contrib/llvm-project/clang contrib/llvm-project/clang/include/clang/Basic contrib/llvm-project/clang/include/clang/CodeGen contrib/llvm-pr...

Dimitry Andric dim at FreeBSD.org
Tue May 5 17:50:29 UTC 2020


Author: dim
Date: Tue May  5 17:50:27 2020
New Revision: 360661
URL: https://svnweb.freebsd.org/changeset/base/360661

Log:
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  9.0.1 final release c1a0a213378a458fbea1a5c77b315c7dce08fd05, and a
  number of follow-ups.
  
  MFC r355948:
  
  Bootstrap mergeinfo for contrib/llvm-project
  
  Merge (record-only) the following paths to contrib/llvm-project:
  * ^/vendor/llvm-project/master
  * ^/vendor/llvm-project/release-8.x
  * ^/vendor/llvm-project/release-9.x
  
  MFC r355951:
  
  Merge empty dir updates from r355950 in vendor/llvm-project.
  
  MFC r355957:
  
  Merge diff elimination updates from r355953 into vendor/llvm-project.
  
  MFC r355959:
  
  Consolidate FREEBSD-Xlist files of different llvm sub-projects into one.
  
  MFC r356004:
  
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  9.0.1 final release c1a0a213378a458fbea1a5c77b315c7dce08fd05.
  
  Release notes for llvm, clang, lld and libc++ 9.0.1 will become
  available here:
  
  https://releases.llvm.org/9.0.1/docs/ReleaseNotes.html
  https://releases.llvm.org/9.0.1/tools/clang/docs/ReleaseNotes.html
  https://releases.llvm.org/9.0.1/tools/lld/docs/ReleaseNotes.html
  https://releases.llvm.org/9.0.1/projects/libcxx/docs/ReleaseNotes.html
  
  PR:		240629
  
  MFC r356005:
  
  Merge commit f97936fab from llvm git (by Eric Fiselier):
  
    [libc++] Cleanup and enable multiple warnings.
  
    Too many warnings are being disabled too quickly. Warnings are
    important to keeping libc++ correct. This patch re-enables two
    warnings: -Wconstant-evaluated and -Wdeprecated-copy.
  
    In future, all warnings disabled for the test suite should require an
    attached bug. The bug should state the plan for re-enabling that
    warning, or a strong case why it should remain disabled.
  
  This should fix a number of new g++ 9 warnings.
  
  Requested by:	rlibby
  
  MFC r356100:
  
  Merge commit d3aeac8e2 from llvm git (by Justin Hibbits)
  
    [PowerPC] Only use PLT annotations if using PIC relocation model
  
    Summary:
    The default static (non-PIC, non-PIE) model for 32-bit powerpc does
    not use @PLT annotations and relocations in GCC.  LLVM shouldn't use
    @PLT annotations either, because it breaks secure-PLT linking with
    (some versions of?) GNU LD.
  
    Update the available-externally.ll test to reflect that default mode
    should be the same as the static relocation, by using the same check
    prefix.
  
    Reviewed by:    sfertile
    Differential Revision: https://reviews.llvm.org/D70570
  
  Reviewed by:	jhibbits
  Differential Revision: https://reviews.freebsd.org/D22913
  
  MFC r356104 (by jhibbits):
  
  [PowerPC] enable atomic.c in compiler_rt and do not check and forces
  lock/lock_free decisions in compiled time
  
  Summary:
  Enables atomic.c in compiler_rt and forces clang to not emit a call for runtime
  decision about lock/lock_free.  At compiling time, if clang can't decide if
  atomic operation can be lock free, it emits calls to external functions  like
  `__atomic_is_lock_free`, `__c11_atomic_is_lock_free` and
  `__atomic_always_lock_free`, postponing decision to a runtime check.  According
  to LLVM code documentation, the mechanism exists due to differences between
  x86_64 processors that can't be decided at runtime.
  
  On PowerPC and PowerPCSPE (32 bits), we already know in advance it can't be lock
  free, so we force the decision at compile time and avoid having to implement it
  in an external library.
  
  This patch was made after 32 bit users testing the PowePC32 bit ISO reported
  llvm could not be compiled with in-base llvm due to `__atomic_load8` not
  implemented.
  
  Submitted by:	alfredo.junior_eldorado.org.br
  Reviewed by:	jhibbits, dim
  
  Differential Revision:	https://reviews.freebsd.org/D22549
  
  MFC r356112 (by jhibbits):
  
  [PowerPC64] Starting from FreeBSD 13.0, default to ELFv2 ABI
  
  This changes the LLVM default powerpc64 ABI to ELFv2, if target OS is
  FreeBSD >= 13.0
  
  This will also be sent upstream.
  
  Submitted by:	alfredo.junior_eldorado.org.br
  Reviewed by:	dim, luporl
  Relnotes:	YES
  Differential Revision:	https://reviews.freebsd.org/D20383
  
  MFC r356256:
  
  Merge commit 468a0cb5f from llvm git (by Craig Topper):
  
    [X86] Add X87 FCMOV support to X86FlagsCopyLowering.
  
    Fixes PR44396
  
  Merge commit 86f48999f from llvm git (by Craig Topper):
  
    [X86] Fix typo in getCMovOpcode.
  
    The 64-bit HasMemoryOperand line was using CMOV32rm instead of
    CMOV64rm. Not sure how to test this. We have no test coverage that
    passes true for HasMemoryOperand.
  
  This fixes 'Assertion failed: (MI.findRegisterDefOperand(X86::EFLAGS) &&
  "Expected a def of EFLAGS for this instruction!"), function
  runOnMachineFunction' when compiling the misc/gpsim port for i386.
  
  Reported by:	yuri
  Upstream PR:	https://bugs.llvm.org/show_bug.cgi?id=44396
  
  MFC r356329:
  
  Merge commit 41449c58c from llvm git (by Roger Ferrer Ibanez):
  
    [RISCV] Fix evaluation of %pcrel_lo
  
    The following testcase
  
      function:
      .Lpcrel_label1:
            auipc   a0, %pcrel_hi(other_function)
            addi    a1, a0, %pcrel_lo(.Lpcrel_label1)
            .p2align        2          # Causes a new fragment to be emitted
  
            .type   other_function, at function
      other_function:
            ret
  
    exposes an odd behaviour in which only the %pcrel_hi relocation is
    evaluated but not the %pcrel_lo.
  
      $ llvm-mc -triple riscv64 -filetype obj t.s | llvm-objdump  -d -r -
  
      <stdin>:      file format ELF64-riscv
  
      Disassembly of section .text:
      0000000000000000 function:
             0:     17 05 00 00     auipc   a0, 0
             4:     93 05 05 00     mv      a1, a0
                    0000000000000004:  R_RISCV_PCREL_LO12_I other_function+4
  
      0000000000000008 other_function:
             8:     67 80 00 00     ret
  
    The reason seems to be that in RISCVAsmBackend::shouldForceRelocation
    we only consider the fragment but in RISCVMCExpr::evaluatePCRelLo we
    consider the section. This usually works but there are cases where
    the section may still be the same but the fragment may be another
    one. In that case we end forcing a %pcrel_lo relocation without any
    %pcrel_hi.
  
    This patch makes RISCVAsmBackend::shouldForceRelocation use the
    section, if any, to determine if the relocation must be forced or
    not.
  
    Differential Revision: https://reviews.llvm.org/D60657
  
  This is a prerequisite for building and linking hard- and soft-float
  riscv worlds with clang and lld.
  
  Requested by:	jhb
  
  MFC r356330:
  
  Merge commit da7b129b1 from llvm git (by James Clarke):
  
    [RISCV] Don't force Local Exec TLS for non-PIC
  
    Summary:
  
    Forcing Local Exec TLS requires the use of copy relocations. Copy
    relocations need special handling in the runtime linker when being
    used against TLS symbols, which is present in glibc, but not in
    FreeBSD nor musl, and so cannot be relied upon. Moreover, copy
    relocations are a hack that embed the size of an object in the ABI
    when it otherwise wouldn't be, and break protected symbols (which are
    expected to be DSO local), whilst also wasting space, thus they
    should be avoided whenever possible. As discussed in D70398, RISC-V
    should move away from forcing Local Exec, and instead use Initial
    Exec like other targets, with possible linker relaxation to follow.
    The RISC-V GCC maintainers also intend to adopt this
    more-conventional behaviour (see
    https://github.com/riscv/riscv-elf-psabi-doc/issues/122).
  
    Reviewers: asb, MaskRay
  
    Reviewed By: MaskRay
  
    Subscribers: emaste, krytarowski, hiraditya, rbar, johnrusso,
    simoncook, sabuasal, niosHD, kito-cheng, shiva0217, zzheng,
    edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe,
    PkmX, jocewei, psnobl, benna, Jim, lenary, s.egerton, pzheng,
    sameer.abuasal, apazos, llvm-commits, bsdjhb
  
    Tags: #llvm
  
    Differential Revision: https://reviews.llvm.org/D70649
  
  This is a prerequisite for building and linking hard- and soft-float
  riscv worlds with clang and lld.
  
  Requested by:	jhb
  
  MFC r356331:
  
  ?Merge commit c6b09bff5 from llvm git (by Lu?s Marques):
  
    [RISCV] Fix wrong CFI directives
  
    Summary: Removes CFI CFA directives that could incorrectly propagate
    beyond the basic block they were inteded for. Specifically it removes
    the epilogue CFI directives. See the branch_and_tail_call test for an
    example of the issue. Should fix the stack unwinding issues caused by
    the incorrect directives.
  
    Reviewers: asb, lenary, shiva0217
    Reviewed By: lenary
    Tags: #llvm
    Differential Revision: https://reviews.llvm.org/D69723
  
  This is a prerequisite for building and linking hard- and soft-float
  riscv worlds with clang and lld.
  
  Requested by:	jhb
  
  MFC r356332:
  
  ?Merge commit d7be3eab5 from llvm git (by Lu?s Marques):
  
    [RISCV] Handle fcopysign(f32, f64) and fcopysign(f64, f32)
  
    Summary: Adds tablegen patterns to explicitly handle fcopysign where
    the magnitude and sign arguments have different types, due to the
    sign value casts being removed the by DAGCombiner. Support for RV32IF
    follows in a separate commit. Adds tests for all relevant scenarios
    except RV32IF.
  
    Reviewers: lenary
    Reviewed By: lenary
    Tags: #llvm
    Differential Revision: https://reviews.llvm.org/D70678
  
  This is a prerequisite for building and linking hard- and soft-float
  riscv worlds with clang and lld.
  
  Requested by:	jhb
  
  MFC r356333:
  
  ?Merge commit 189b7393d from llvm git (by John Baldwin):
  
    [lld][RISCV] Use an e_flags of 0 if there are only binary input files.
  
    Summary:
    If none of the input files are ELF object files (for example, when
    generating an object file from a single binary input file via "-b
    binary"), use a fallback value for the ELF header flags instead of
    crashing with an assertion failure.
  
    Reviewers: MaskRay, ruiu, espindola
  
    Reviewed By: MaskRay, ruiu
  
    Subscribers: kevans, grimar, emaste, arichardson, asb, rbar,
    johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217,
    zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o,
    rkruppe, PkmX, jocewei, psnobl, benna, Jim, lenary, s.egerton,
    pzheng, sameer.abuasal, apazos, luismarques, llvm-commits, jrtc27
  
    Tags: #llvm
  
    Differential Revision: https://reviews.llvm.org/D71101
  
  This is a prerequisite for building and linking hard- and soft-float
  riscv worlds with clang and lld.
  
  Requested by:	jhb
  
  MFC r356701:
  
  Merge commit f46ba4f07 from llvm git (by Simon Atanasyan):
  
    [mips] Use less registers to load address of TargetExternalSymbol
  
    There is no pattern matched `add hi, (MipsLo texternalsym)`. As a
    result, loading an address of 32-bit symbol requires two registers
    and one more additional instruction:
    ```
    addiu $1, $zero, %lo(foo)
    lui   $2, %hi(foo)
    addu  $25, $2, $1
    ```
  
    This patch adds the missed pattern and enables generation more
    effective set of instructions:
    ```
    lui   $1, %hi(foo)
    addiu $25, $1, %lo(foo)
    ```
  
    Differential Revision: https://reviews.llvm.org/D66771
  
    llvm-svn: 370196
  
  Merge commit 59bb3609f from llvm git (by Simon Atanasyan):
  
    [mips] Fix 64-bit address loading in case of applying 32-bit mask to
    the result
  
    If result of 64-bit address loading combines with 32-bit mask, LLVM
    tries to optimize the code and remove "redundant" loading of upper
    32-bits of the address. It leads to incorrect code on MIPS64 targets.
  
    MIPS backend creates the following chain of commands to load 64-bit
    address in the `MipsTargetLowering::getAddrNonPICSym64` method:
    ```
    (add (shl (add (shl (add %highest(sym), %higher(sym)),
  		      16),
  		 %hi(sym)),
  	    16),
         %lo(%sym))
    ```
  
    If the mask presents, LLVM decides to optimize the chain of commands.
    It really does not make sense to load upper 32-bits because the
    0x0fffffff mask anyway clears them. After removing redundant commands
    we get this chain:
    ```
    (add (shl (%hi(sym), 16), %lo(%sym))
    ```
  
    There is no patterns matched `(MipsHi (i64 symbol))`. Due a bug in
    `SYM_32` predicate definition, backend incorrectly selects a pattern
    for a 32-bit symbols and uses the `lui` instruction for loading
    `%hi(sym)`.
  
    As a result we get incorrect set of instructions with unnecessary
    16-bit left shifting:
    ```
    lui     at,0x0
        R_MIPS_HI16     foo
    dsll    at,at,0x10
    daddiu  at,at,0
        R_MIPS_LO16     foo
    ```
  
    This patch resolves two problems:
    - Fix `SYM_32/SYM_64` predicates to prevent selection of patterns
      dedicated to 32-bit symbols in case of using N64 ABI.
    - Add missed patterns for 64-bit symbols for `%hi/%lo`.
  
    Fix PR42736.
  
    Differential Revision: https://reviews.llvm.org/D66228
  
    llvm-svn: 370268
  
  These two commits fix a miscompilation of the kernel for mips64, and
  should allow clang to be used as the default compiler for mips64.
  
  Requested by:	arichards
  
  MFC r356789 (by arichardson):
  
  Merge commit 894f742acb from llvm git (by me):
  
    [MIPS][ELF] Use PC-relative relocations in .eh_frame when possible
  
    When compiling position-independent executables, we now use
    DW_EH_PE_pcrel | DW_EH_PE_sdata4. However, the MIPS ABI does not define a
    64-bit PC-relative ELF relocation so we cannot use sdata8 for the large
    code model case. When using the large code model, we fall back to the
    previous behaviour of generating absolute relocations.
  
    With this change clang-generated .o files can be linked by LLD without
    having to pass -Wl,-z,notext (which creates text relocations).
    This is simpler than the approach used by ld.bfd, which rewrites the
    .eh_frame section to convert absolute relocations into relative references.
  
    I saw in D13104 that apparently ld.bfd did not accept pc-relative relocations
    for MIPS ouput at some point. However, I also checked that recent ld.bfd
    can process the clang-generated .o files so this no longer seems true.
  
    Reviewed By: atanasyan
    Differential Revision: https://reviews.llvm.org/D72228
  
  Merge commit 8e8ccf47 from llvm git (by me)
  
    [MIPS] Don't emit R_(MICRO)MIPS_JALR relocations against data symbols
  
    The R_(MICRO)MIPS_JALR optimization only works when used against functions.
    Using the relocation against a data symbol (e.g. function pointer) will
    cause some linkers that don't ignore the hint in this case (e.g. LLD prior
    to commit 5bab291) to generate a relative branch to the data symbol
    which crashes at run time. Before this patch, LLVM was erroneously emitting
    these relocations against local-dynamic TLS function pointers and global
    function pointers with internal visibility.
  
    Reviewers: atanasyan, jrtc27, vstefanovic
    Reviewed By: atanasyan
    Differential Revision: https://reviews.llvm.org/D72571
  
  These two changes should allow using lld for MIPS64 (and maybe also MIPS32)
  by default.
  The second commit is not strictly necessary for clang+lld since LLD9 will
  not perform the R_MIPS_JALR optimization (it was only added for 10) but it
  is probably required in order to use recent ld.bfd.
  
  Reviewed By:	dim, emaste
  Differential Revision: https://reviews.freebsd.org/D23203
  
  MFC r356929:
  
  Merge commit bc4bc5aa0 from llvm git (by Justin Hibbits):
  
    Add 8548 CPU definition and attributes
  
    8548 CPU is GCC's name for the e500v2, so accept this in clang.  The
    e500v2 doesn't support lwsync, so define __NO_LWSYNC__ for this as
    well, as GCC does.
  
    Differential Revision:  https://reviews.llvm.org/D67787
  
  Merge commit ff0311c4b from llvm git (by Justin Hibbits):
  
    [PowerPC]: Add powerpcspe target triple subarch component
  
    Summary:
    This allows the use of '-target powerpcspe-unknown-linux-gnu' or
    'powerpcspe-unknown-freebsd' to be used, instead of '-target
    powerpc-unknown-linux-gnu -mspe'.
  
    Reviewed By: dim
    Differential Revision: https://reviews.llvm.org/D72014
  
  Merge commit ba91dffaf from llvm git (by Fangrui Song):
  
    [Driver][PowerPC] Move powerpcspe logic from cc1 to Driver
  
    Follow-up of D72014. It is more appropriate to use a target feature
    instead of a SubTypeArch to express the difference.
  
    Reviewed By: #powerpc, jhibbits
  
    Differential Revision: https://reviews.llvm.org/D72433
  
  commit 36eedfcb3 from llvm git (by Justin Hibbits):
  
    [PowerPC] Fix powerpcspe subtarget enablement in llvm backend
  
    Summary:
  
    As currently written, -target powerpcspe will enable SPE regardless
    of disabling the feature later on in the command line.  Instead,
    change this to just set a default CPU to 'e500' instead of a generic
    CPU.
  
    As part of this, add FeatureSPE to the e500 definition.
  
    Reviewed By: MaskRay
    Differential Revision: https://reviews.llvm.org/D72673
  
  These are needed to unbreak the build for powerpcspe.
  
  Requested by:	jhibbits
  
  MFC r358711:
  
  Merge commit f75939599 from llvm git (by Erich Keane):
  
    Reland r374450 with Richard Smith's comments and test fixed.
  
    The behavior from the original patch has changed, since we're no
    longer allowing LLVM to just ignore the alignment.  Instead, we're
    just assuming the maximum possible alignment.
  
    Differential Revision: https://reviews.llvm.org/D68824
  
    llvm-svn: 374562
  
  This fixes 'Assertion failed: (Alignment != 0 && "Invalid Alignment"),
  function CreateAlignmentAssumption', when building recent versions of
  v8, which invoke __builtin_assume_aligned() with its alignment argument
  set to 4GiB or more.
  
  Clang will now report a warning, and show the maximum possible alignment
  instead, e.g.:
  
  huge-align.cpp:1:27: warning: requested alignment must be 536870912 bytes or smaller; maximum alignment assumed [-Wbuiltin-assume-aligned-alignment]
  void *f(void *g) { return __builtin_assume_aligned(g, 4294967296); }
                            ^                           ~~~~~~~~~~
  
  Upstream PR:	https://bugs.llvm.org/show_bug.cgi?id=43839
  Reported by:	cem

Added:
  stable/11/contrib/llvm-project/FREEBSD-Xlist
     - copied unchanged from r355959, head/contrib/llvm-project/FREEBSD-Xlist
  stable/11/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
     - copied unchanged from r356004, head/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
  stable/11/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
     - copied unchanged from r356004, head/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
Deleted:
  stable/11/contrib/llvm-project/clang/FREEBSD-Xlist
  stable/11/contrib/llvm-project/compiler-rt/FREEBSD-Xlist
  stable/11/contrib/llvm-project/libcxx/FREEBSD-Xlist
  stable/11/contrib/llvm-project/libcxx/FREEBSD-upgrade
  stable/11/contrib/llvm-project/libunwind/FREEBSD-Xlist
  stable/11/contrib/llvm-project/lld/FREEBSD-Xlist
  stable/11/contrib/llvm-project/lldb/FREEBSD-Xlist
  stable/11/contrib/llvm-project/llvm/FREEBSD-Xlist
  stable/11/contrib/llvm-project/llvm/lib/Target/WebAssembly/InstPrinter/
  stable/11/contrib/llvm-project/openmp/FREEBSD-Xlist
Modified:
  stable/11/ObsoleteFiles.inc
  stable/11/UPDATING
  stable/11/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
  stable/11/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
  stable/11/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
  stable/11/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
  stable/11/contrib/llvm-project/clang/lib/Basic/Targets/PPC.cpp
  stable/11/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
  stable/11/contrib/llvm-project/clang/lib/Basic/Version.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp
  stable/11/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.h
  stable/11/contrib/llvm-project/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ARM.cpp
  stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/PPC.cpp
  stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
  stable/11/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
  stable/11/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
  stable/11/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
  stable/11/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
  stable/11/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
  stable/11/contrib/llvm-project/libcxx/include/__bit_reference
  stable/11/contrib/llvm-project/libcxx/include/__errc
  stable/11/contrib/llvm-project/libcxx/include/__hash_table
  stable/11/contrib/llvm-project/libcxx/include/__tree
  stable/11/contrib/llvm-project/libcxx/include/errno.h
  stable/11/contrib/llvm-project/libcxx/include/ext/hash_map
  stable/11/contrib/llvm-project/libcxx/include/random
  stable/11/contrib/llvm-project/libcxx/include/valarray
  stable/11/contrib/llvm-project/lld/COFF/Driver.cpp
  stable/11/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
  stable/11/contrib/llvm-project/lld/ELF/Symbols.h
  stable/11/contrib/llvm-project/lld/docs/ReleaseNotes.rst
  stable/11/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  stable/11/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
  stable/11/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
  stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
  stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
  stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
  stable/11/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
  stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/MachineFunction.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/MachineInstr.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
  stable/11/contrib/llvm-project/llvm/lib/CodeGen/StackProtector.cpp
  stable/11/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
  stable/11/contrib/llvm-project/llvm/lib/Object/ELFObjectFile.cpp
  stable/11/contrib/llvm-project/llvm/lib/Object/RelocationResolver.cpp
  stable/11/contrib/llvm-project/llvm/lib/Support/ARMTargetParser.cpp
  stable/11/contrib/llvm-project/llvm/lib/Support/Triple.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/ARM/ARM.td
  stable/11/contrib/llvm-project/llvm/lib/Target/ARM/ARMPredicates.td
  stable/11/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.h
  stable/11/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/Mips/Mips.td
  stable/11/contrib/llvm-project/llvm/lib/Target/Mips/Mips64InstrInfo.td
  stable/11/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.td
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/P9InstrResources.td
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.td
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.td
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
  stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
  stable/11/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
  stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.h
  stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.cpp
  stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86MachineFunctionInfo.h
  stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.cpp
  stable/11/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
  stable/11/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
  stable/11/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVN.cpp
  stable/11/contrib/llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  stable/11/contrib/llvm-project/llvm/lib/Transforms/Scalar/SROA.cpp
  stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
  stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
  stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
  stable/11/contrib/llvm-project/llvm/tools/opt/opt.cpp
  stable/11/etc/mtree/BSD.debug.dist
  stable/11/etc/mtree/BSD.usr.dist
  stable/11/lib/clang/freebsd_cc_version.h
  stable/11/lib/clang/headers/Makefile
  stable/11/lib/clang/include/VCSVersion.inc
  stable/11/lib/clang/include/clang/Basic/Version.inc
  stable/11/lib/clang/include/clang/Config/config.h
  stable/11/lib/clang/include/lld/Common/Version.inc
  stable/11/lib/clang/include/llvm/Config/config.h
  stable/11/lib/clang/include/llvm/Config/llvm-config.h
  stable/11/lib/clang/include/llvm/Support/VCSRevision.h
  stable/11/lib/libclang_rt/Makefile.inc
  stable/11/lib/libcompiler_rt/Makefile.inc
  stable/11/tools/build/mk/OptionalObsoleteFiles.inc
Directory Properties:
  stable/11/   (props changed)
  stable/11/contrib/llvm-project/clang/   (props changed)
  stable/11/contrib/llvm-project/compiler-rt/   (props changed)
  stable/11/contrib/llvm-project/libcxx/   (props changed)
  stable/11/contrib/llvm-project/libunwind/   (props changed)
  stable/11/contrib/llvm-project/lld/   (props changed)
  stable/11/contrib/llvm-project/lldb/   (props changed)
  stable/11/contrib/llvm-project/llvm/   (props changed)
  stable/11/contrib/llvm-project/openmp/   (props changed)

Modified: stable/11/ObsoleteFiles.inc
==============================================================================
--- stable/11/ObsoleteFiles.inc	Tue May  5 17:10:49 2020	(r360660)
+++ stable/11/ObsoleteFiles.inc	Tue May  5 17:50:27 2020	(r360661)
@@ -38,6 +38,243 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20200505: new clang import which bumps version from 9.0.0 to 9.0.1.
+OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/algorithm
+OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/complex
+OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/new
+OLD_DIRS+=usr/lib/clang/9.0.0/include/cuda_wrappers
+OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/__clang_openmp_math.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/__clang_openmp_math_declares.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/cmath
+OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/math.h
+OLD_DIRS+=usr/lib/clang/9.0.0/include/openmp_wrappers
+OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/emmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/mm_malloc.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/mmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/xmmintrin.h
+OLD_DIRS+=usr/lib/clang/9.0.0/include/ppc_wrappers
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/hwasan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/netbsd_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/scudo_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/tsan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/9.0.0/include/sanitizer
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_complex_builtins.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_device_functions.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_libdevice_declares.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/altivec.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/arm64intr.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/arm_fp16.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/armintr.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512bf16intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512bitalgintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vnniintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vp2intersectintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/cetintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/cldemoteintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/clwbintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/clzerointrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/cpuid.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/enqcmdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/gfniintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/immintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/invpcidintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/lwpintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/module.modulemap
+OLD_FILES+=usr/lib/clang/9.0.0/include/movdirintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/msa.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/opencl-c-base.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/pconfigintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/ptwriteintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/sgxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/vadefs.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/vaesintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/vpclmulqdqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/waitpkgintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/wbnoinvdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/9.0.0/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/9.0.0/include
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-aarch64.so
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-arm.so
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-armhf.so
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.dd-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.dd-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-powerpc.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-powerpc64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.safestack-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-arm.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-x86_64.a
+OLD_DIRS+=usr/lib/clang/9.0.0/lib/freebsd
+OLD_DIRS+=usr/lib/clang/9.0.0/lib
+OLD_DIRS+=usr/lib/clang/9.0.0
+
 # 20200505: new clang import which bumps version from 8.0.1 to 9.0.0.
 OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/allocator_interface.h
 OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/asan_interface.h

Modified: stable/11/UPDATING
==============================================================================
--- stable/11/UPDATING	Tue May  5 17:10:49 2020	(r360660)
+++ stable/11/UPDATING	Tue May  5 17:50:27 2020	(r360661)
@@ -18,7 +18,7 @@ from older version of current across the gcc/clang cut
 
 20200505:
 	Clang, llvm, lld, lldb, compiler-rt, libc++, libunwind and openmp have
-	been upgraded to 9.0.0.  Please see the 20141231 entry below for
+	been upgraded to 9.0.1.  Please see the 20141231 entry below for
 	information about prerequisites and upgrading, if you are not already
 	using clang 3.5.0 or higher.
 

Copied: stable/11/contrib/llvm-project/FREEBSD-Xlist (from r355959, head/contrib/llvm-project/FREEBSD-Xlist)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/11/contrib/llvm-project/FREEBSD-Xlist	Tue May  5 17:50:27 2020	(r360661, copy of r355959, head/contrib/llvm-project/FREEBSD-Xlist)
@@ -0,0 +1,1000 @@
+# $FreeBSD$
+.arcconfig
+.clang-format
+.clang-tidy
+.gitignore
+README.md
+clang/.arcconfig
+clang/.clang-format
+clang/.clang-tidy
+clang/.gitignore
+clang/CMakeLists.txt
+clang/CODE_OWNERS.TXT
+clang/INPUTS/
+clang/INSTALL.txt
+clang/ModuleInfo.txt
+clang/NOTES.txt
+clang/README.txt
+clang/bindings/
+clang/cmake/
+clang/docs/
+clang/examples/
+clang/include/CMakeLists.txt
+clang/include/clang/AST/CMakeLists.txt
+clang/include/clang/Basic/CMakeLists.txt
+clang/include/clang/Basic/Version.inc.in
+clang/include/clang/CMakeLists.txt
+clang/include/clang/Config/
+clang/include/clang/Driver/CMakeLists.txt
+clang/include/clang/Parse/CMakeLists.txt
+clang/include/clang/Sema/CMakeLists.txt
+clang/include/clang/Serialization/CMakeLists.txt
+clang/include/clang/StaticAnalyzer/Checkers/CMakeLists.txt
+clang/lib/ARCMigrate/CMakeLists.txt
+clang/lib/AST/CMakeLists.txt
+clang/lib/ASTMatchers/CMakeLists.txt
+clang/lib/ASTMatchers/Dynamic/CMakeLists.txt
+clang/lib/Analysis/CMakeLists.txt
+clang/lib/Analysis/plugins/CMakeLists.txt
+clang/lib/Analysis/plugins/CheckerDependencyHandling/CMakeLists.txt
+clang/lib/Analysis/plugins/CheckerOptionHandling/CMakeLists.txt
+clang/lib/Analysis/plugins/SampleAnalyzer/CMakeLists.txt
+clang/lib/Basic/CMakeLists.txt
+clang/lib/CMakeLists.txt
+clang/lib/CodeGen/CMakeLists.txt
+clang/lib/CodeGen/README.txt
+clang/lib/CrossTU/CMakeLists.txt
+clang/lib/DirectoryWatcher/CMakeLists.txt
+clang/lib/Driver/CMakeLists.txt
+clang/lib/Edit/CMakeLists.txt
+clang/lib/Format/CMakeLists.txt
+clang/lib/Frontend/CMakeLists.txt
+clang/lib/Frontend/Rewrite/CMakeLists.txt
+clang/lib/FrontendTool/CMakeLists.txt
+clang/lib/Headers/CMakeLists.txt
+clang/lib/Index/CMakeLists.txt
+clang/lib/Lex/CMakeLists.txt
+clang/lib/Parse/CMakeLists.txt
+clang/lib/Rewrite/CMakeLists.txt
+clang/lib/Sema/CMakeLists.txt
+clang/lib/Serialization/CMakeLists.txt
+clang/lib/StaticAnalyzer/CMakeLists.txt
+clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
+clang/lib/StaticAnalyzer/Core/CMakeLists.txt
+clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
+clang/lib/StaticAnalyzer/README.txt
+clang/lib/Tooling/ASTDiff/CMakeLists.txt
+clang/lib/Tooling/CMakeLists.txt
+clang/lib/Tooling/Core/CMakeLists.txt
+clang/lib/Tooling/DependencyScanning/CMakeLists.txt
+clang/lib/Tooling/Inclusions/CMakeLists.txt
+clang/lib/Tooling/Refactoring/CMakeLists.txt
+clang/lib/Tooling/Syntax/CMakeLists.txt
+clang/runtime/
+clang/test/
+clang/tools/CMakeLists.txt
+clang/tools/arcmt-test/
+clang/tools/c-arcmt-test/
+clang/tools/c-index-test/
+clang/tools/clang-check/
+clang/tools/clang-diff/
+clang/tools/clang-extdef-mapping/
+clang/tools/clang-format/CMakeLists.txt
+clang/tools/clang-format/clang-format-bbedit.applescript
+clang/tools/clang-format/clang-format-diff.py
+clang/tools/clang-format/clang-format-sublime.py
+clang/tools/clang-format/clang-format-test.el
+clang/tools/clang-format/clang-format.el
+clang/tools/clang-format/clang-format.py
+clang/tools/clang-format/fuzzer/
+clang/tools/clang-format/git-clang-format
+clang/tools/clang-format-vs/
+clang/tools/clang-fuzzer/
+clang/tools/clang-import-test/
+clang/tools/clang-offload-bundler/
+clang/tools/clang-refactor/
+clang/tools/clang-rename/
+clang/tools/clang-scan-deps/
+clang/tools/clang-shlib/
+clang/tools/diag-build/
+clang/tools/diagtool/
+clang/tools/driver/CMakeLists.txt
+clang/tools/driver/Info.plist.in
+clang/tools/libclang/
+clang/tools/scan-build/
+clang/tools/scan-build-py/
+clang/tools/scan-view/
+clang/unittests/
+clang/utils/ABITest/
+clang/utils/CIndex/
+clang/utils/CaptureCmd
+clang/utils/ClangDataFormat.py
+clang/utils/ClangVisualizers/
+clang/utils/CmpDriver
+clang/utils/FindSpecRefs
+clang/utils/FuzzTest
+clang/utils/TableGen/CMakeLists.txt
+clang/utils/TestUtils/
+clang/utils/VtableTest/
+clang/utils/analyzer/
+clang/utils/bash-autocomplete.sh
+clang/utils/builtin-defines.c
+clang/utils/check_cfc/
+clang/utils/clangdiag.py
+clang/utils/creduce-clang-crash.py
+clang/utils/find-unused-diagnostics.sh
+clang/utils/hmaptool/
+clang/utils/make-ast-dump-check.sh
+clang/utils/modfuzz.py
+clang/utils/perf-training/
+clang/utils/token-delta.py
+clang/utils/valgrind/
+clang/www/
+clang-tools-extra/
+compiler-rt/.arcconfig
+compiler-rt/.gitignore
+compiler-rt/CMakeLists.txt
+compiler-rt/CODE_OWNERS.TXT
+compiler-rt/cmake/
+compiler-rt/docs/
+compiler-rt/include/CMakeLists.txt
+compiler-rt/lib/CMakeLists.txt
+compiler-rt/lib/asan/.clang-format
+compiler-rt/lib/asan/CMakeLists.txt
+compiler-rt/lib/asan/scripts/
+compiler-rt/lib/asan/tests/
+compiler-rt/lib/builtins/CMakeLists.txt
+compiler-rt/lib/builtins/Darwin-excludes/
+compiler-rt/lib/builtins/macho_embedded/
+compiler-rt/lib/cfi/CMakeLists.txt
+compiler-rt/lib/crt/CMakeLists.txt
+compiler-rt/lib/dfsan/.clang-format
+compiler-rt/lib/dfsan/CMakeLists.txt
+compiler-rt/lib/dfsan/scripts/
+compiler-rt/lib/fuzzer/CMakeLists.txt
+compiler-rt/lib/fuzzer/afl/
+compiler-rt/lib/fuzzer/build.sh
+compiler-rt/lib/fuzzer/dataflow/
+compiler-rt/lib/fuzzer/scripts/
+compiler-rt/lib/fuzzer/standalone/
+compiler-rt/lib/fuzzer/tests/
+compiler-rt/lib/gwp_asan/CMakeLists.txt
+compiler-rt/lib/gwp_asan/tests/
+compiler-rt/lib/hwasan/.clang-format
+compiler-rt/lib/hwasan/CMakeLists.txt
+compiler-rt/lib/interception/.clang-format
+compiler-rt/lib/interception/CMakeLists.txt
+compiler-rt/lib/interception/tests/
+compiler-rt/lib/lsan/.clang-format
+compiler-rt/lib/lsan/CMakeLists.txt
+compiler-rt/lib/msan/.clang-format
+compiler-rt/lib/msan/CMakeLists.txt
+compiler-rt/lib/msan/tests/
+compiler-rt/lib/profile/CMakeLists.txt
+compiler-rt/lib/safestack/.clang-format
+compiler-rt/lib/safestack/CMakeLists.txt
+compiler-rt/lib/sanitizer_common/.clang-format
+compiler-rt/lib/sanitizer_common/.clang-tidy
+compiler-rt/lib/sanitizer_common/CMakeLists.txt
+compiler-rt/lib/sanitizer_common/scripts/
+compiler-rt/lib/sanitizer_common/tests/
+compiler-rt/lib/scudo/CMakeLists.txt
+compiler-rt/lib/scudo/standalone/CMakeLists.txt
+compiler-rt/lib/scudo/standalone/tests/
+compiler-rt/lib/stats/CMakeLists.txt
+compiler-rt/lib/tsan/.clang-format
+compiler-rt/lib/tsan/CMakeLists.txt
+compiler-rt/lib/tsan/analyze_libtsan.sh
+compiler-rt/lib/tsan/check_analyze.sh
+compiler-rt/lib/tsan/check_cmake.sh
+compiler-rt/lib/tsan/dd/CMakeLists.txt
+compiler-rt/lib/tsan/go/build.bat
+compiler-rt/lib/tsan/go/buildgo.sh
+compiler-rt/lib/tsan/tests/
+compiler-rt/lib/ubsan/CMakeLists.txt
+compiler-rt/lib/ubsan_minimal/CMakeLists.txt
+compiler-rt/lib/xray/CMakeLists.txt
+compiler-rt/lib/xray/tests/
+compiler-rt/test/
+compiler-rt/unittests/
+compiler-rt/utils/
+compiler-rt/www/
+debuginfo-tests/
+libclc/
+libcxx/.arcconfig
+libcxx/.clang-format
+libcxx/.gitignore
+libcxx/CMakeLists.txt
+libcxx/NOTES.TXT
+libcxx/TODO.TXT
+libcxx/appveyor-reqs-install.cmd
+libcxx/appveyor.yml
+libcxx/benchmarks/
+libcxx/cmake/
+libcxx/docs/
+libcxx/fuzzing/
+libcxx/include/CMakeLists.txt
+libcxx/include/__config_site.in
+libcxx/include/support/
+libcxx/lib/
+libcxx/src/support/solaris/
+libcxx/src/support/win32/
+libcxx/test/
+libcxx/utils/
+libcxx/www/
+libcxxabi/
+libunwind/.arcconfig
+libunwind/.clang-format
+libunwind/CMakeLists.txt
+libunwind/cmake/
+libunwind/docs/
+libunwind/src/CMakeLists.txt
+libunwind/test/
+lld/MinGW/
+lld/cmake/
+lld/test/
+lld/unittests/
+lld/utils/
+lld/wasm/
+lldb/.arcconfig
+lldb/.clang-format
+lldb/.gitignore
+lldb/CMakeLists.txt
+lldb/CODE_OWNERS.txt
+lldb/INSTALL.txt
+lldb/cmake/
+lldb/docs/.htaccess
+lldb/docs/CMakeLists.txt
+lldb/docs/_static/
+lldb/docs/conf.py
+lldb/docs/doxygen-mainpage.dox
+lldb/docs/doxygen.cfg.in
+lldb/docs/index.rst
+lldb/docs/lldb-for-gdb-users.txt
+lldb/docs/lldb-gdb-remote.txt
+lldb/docs/lldb-platform-packets.txt
+lldb/docs/resources/
+lldb/docs/status/
+lldb/docs/structured_data/
+lldb/docs/testsuite/
+lldb/docs/use/
+lldb/examples/
+lldb/include/lldb/Host/Config.h
+lldb/include/lldb/Host/android/
+lldb/include/lldb/Host/linux/
+lldb/include/lldb/Host/macosx/
+lldb/include/lldb/Host/windows/
+lldb/lit/
+lldb/lldb.xcodeproj/
+lldb/lldb.xcworkspace/
+lldb/packages/
+lldb/resources/
+lldb/scripts/
+lldb/source/API/CMakeLists.txt
+lldb/source/Breakpoint/CMakeLists.txt
+lldb/source/CMakeLists.txt
+lldb/source/Commands/CMakeLists.txt
+lldb/source/Core/CMakeLists.txt
+lldb/source/DataFormatters/CMakeLists.txt
+lldb/source/Expression/CMakeLists.txt
+lldb/source/Host/CMakeLists.txt
+lldb/source/Host/android/
+lldb/source/Host/linux/
+lldb/source/Host/macosx/
+lldb/source/Host/windows/
+lldb/source/Initialization/CMakeLists.txt
+lldb/source/Interpreter/CMakeLists.txt
+lldb/source/Plugins/ABI/CMakeLists.txt
+lldb/source/Plugins/ABI/MacOSX-arm/CMakeLists.txt
+lldb/source/Plugins/ABI/MacOSX-arm64/CMakeLists.txt
+lldb/source/Plugins/ABI/MacOSX-i386/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-arm/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-arm64/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-hexagon/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-i386/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-mips/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-mips64/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-ppc/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-ppc64/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-s390x/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-x86_64/CMakeLists.txt
+lldb/source/Plugins/ABI/Windows-x86_64/CMakeLists.txt
+lldb/source/Plugins/Architecture/Arm/CMakeLists.txt
+lldb/source/Plugins/Architecture/CMakeLists.txt
+lldb/source/Plugins/Architecture/Mips/CMakeLists.txt
+lldb/source/Plugins/Architecture/PPC64/CMakeLists.txt
+lldb/source/Plugins/CMakeLists.txt
+lldb/source/Plugins/Disassembler/CMakeLists.txt
+lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt
+lldb/source/Plugins/DynamicLoader/CMakeLists.txt
+lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
+lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/CMakeLists.txt
+lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
+lldb/source/Plugins/DynamicLoader/POSIX-DYLD/CMakeLists.txt
+lldb/source/Plugins/DynamicLoader/Static/CMakeLists.txt
+lldb/source/Plugins/DynamicLoader/Windows-DYLD/CMakeLists.txt
+lldb/source/Plugins/ExpressionParser/CMakeLists.txt
+lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt
+lldb/source/Plugins/Instruction/ARM/CMakeLists.txt
+lldb/source/Plugins/Instruction/ARM64/CMakeLists.txt
+lldb/source/Plugins/Instruction/CMakeLists.txt
+lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt
+lldb/source/Plugins/Instruction/MIPS64/CMakeLists.txt
+lldb/source/Plugins/Instruction/PPC64/CMakeLists.txt
+lldb/source/Plugins/InstrumentationRuntime/ASan/CMakeLists.txt
+lldb/source/Plugins/InstrumentationRuntime/CMakeLists.txt
+lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt
+lldb/source/Plugins/InstrumentationRuntime/TSan/CMakeLists.txt
+lldb/source/Plugins/InstrumentationRuntime/UBSan/CMakeLists.txt
+lldb/source/Plugins/JITLoader/CMakeLists.txt
+lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt
+lldb/source/Plugins/Language/CMakeLists.txt
+lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt
+lldb/source/Plugins/Language/ClangCommon/CMakeLists.txt
+lldb/source/Plugins/Language/ObjC/CMakeLists.txt
+lldb/source/Plugins/Language/ObjCPlusPlus/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/CPlusPlus/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/Go/
+lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/ObjC/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/RenderScript/CMakeLists.txt
+lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
+lldb/source/Plugins/MemoryHistory/CMakeLists.txt
+lldb/source/Plugins/MemoryHistory/asan/CMakeLists.txt
+lldb/source/Plugins/ObjectContainer/BSD-Archive/CMakeLists.txt
+lldb/source/Plugins/ObjectContainer/CMakeLists.txt
+lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
+lldb/source/Plugins/ObjectFile/Breakpad/CMakeLists.txt
+lldb/source/Plugins/ObjectFile/CMakeLists.txt
+lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt
+lldb/source/Plugins/ObjectFile/JIT/CMakeLists.txt
+lldb/source/Plugins/ObjectFile/Mach-O/
+lldb/source/Plugins/ObjectFile/PECOFF/
+lldb/source/Plugins/OperatingSystem/CMakeLists.txt
+lldb/source/Plugins/OperatingSystem/Python/CMakeLists.txt
+lldb/source/Plugins/Platform/Android/
+lldb/source/Plugins/Platform/CMakeLists.txt
+lldb/source/Plugins/Platform/FreeBSD/CMakeLists.txt
+lldb/source/Plugins/Platform/Linux/
+lldb/source/Plugins/Platform/MacOSX/
+lldb/source/Plugins/Platform/NetBSD/CMakeLists.txt
+lldb/source/Plugins/Platform/OpenBSD/CMakeLists.txt
+lldb/source/Plugins/Platform/POSIX/CMakeLists.txt
+lldb/source/Plugins/Platform/Windows/
+lldb/source/Plugins/Platform/gdb-server/CMakeLists.txt
+lldb/source/Plugins/Process/CMakeLists.txt
+lldb/source/Plugins/Process/FreeBSD/CMakeLists.txt
+lldb/source/Plugins/Process/Linux/
+lldb/source/Plugins/Process/MacOSX-Kernel/
+lldb/source/Plugins/Process/NetBSD/CMakeLists.txt
+lldb/source/Plugins/Process/POSIX/CMakeLists.txt
+lldb/source/Plugins/Process/Utility/CMakeLists.txt
+lldb/source/Plugins/Process/Windows/
+lldb/source/Plugins/Process/elf-core/CMakeLists.txt
+lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
+lldb/source/Plugins/Process/mach-core/
+lldb/source/Plugins/Process/minidump/CMakeLists.txt
+lldb/source/Plugins/ScriptInterpreter/CMakeLists.txt
+lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt
+lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt
+lldb/source/Plugins/StructuredData/CMakeLists.txt
+lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt
+lldb/source/Plugins/SymbolFile/Breakpad/CMakeLists.txt
+lldb/source/Plugins/SymbolFile/CMakeLists.txt
+lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt
+lldb/source/Plugins/SymbolFile/NativePDB/CMakeLists.txt
+lldb/source/Plugins/SymbolFile/PDB/CMakeLists.txt
+lldb/source/Plugins/SymbolFile/Symtab/CMakeLists.txt
+lldb/source/Plugins/SymbolVendor/CMakeLists.txt
+lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt
+lldb/source/Plugins/SymbolVendor/MacOSX/
+lldb/source/Plugins/SystemRuntime/
+lldb/source/Plugins/UnwindAssembly/CMakeLists.txt
+lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt
+lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt
+lldb/source/Symbol/CMakeLists.txt
+lldb/source/Target/CMakeLists.txt
+lldb/source/Utility/CMakeLists.txt
+lldb/test/
+lldb/third_party/
+lldb/tools/CMakeLists.txt
+lldb/tools/argdumper/CMakeLists.txt
+lldb/tools/darwin-debug/
+lldb/tools/darwin-threads/
+lldb/tools/debugserver/
+lldb/tools/driver/CMakeLists.txt
+lldb/tools/driver/lldb-Info.plist
+lldb/tools/intel-features/
+lldb/tools/lldb-instr/CMakeLists.txt
+lldb/tools/lldb-mi/CMakeLists.txt
+lldb/tools/lldb-mi/lldb-Info.plist
+lldb/tools/lldb-perf/
+lldb/tools/lldb-server/CMakeLists.txt
+lldb/tools/lldb-test/
+lldb/tools/lldb-vscode/
+lldb/unittests/
+lldb/use_lldb_suite_root.py
+lldb/utils/TableGen/CMakeLists.txt
+lldb/utils/git-svn/
+lldb/utils/lit-cpuid/
+lldb/utils/lldb-dotest/
+lldb/utils/lui/
+lldb/utils/misc/
+lldb/utils/sync-source/
+lldb/utils/test/
+lldb/utils/vim-lldb/
+llgo/
+llvm/.arcconfig
+llvm/.clang-format
+llvm/.clang-tidy
+llvm/.gitattributes
+llvm/.gitignore
+llvm/CMakeLists.txt
+llvm/CODE_OWNERS.TXT
+llvm/CREDITS.TXT
+llvm/LLVMBuild.txt
+llvm/README.txt
+llvm/RELEASE_TESTERS.TXT
+llvm/benchmarks/
+llvm/bindings/
+llvm/cmake/
+llvm/configure
+llvm/docs/
+llvm/examples/
+llvm/include/llvm/CMakeLists.txt
+llvm/include/llvm/Config/
+llvm/include/llvm/IR/CMakeLists.txt
+llvm/include/llvm/Support/CMakeLists.txt
+llvm/include/llvm/Support/LICENSE.TXT
+llvm/lib/Analysis/CMakeLists.txt
+llvm/lib/Analysis/LLVMBuild.txt
+llvm/lib/Analysis/README.txt
+llvm/lib/AsmParser/CMakeLists.txt
+llvm/lib/AsmParser/LLVMBuild.txt
+llvm/lib/BinaryFormat/CMakeLists.txt
+llvm/lib/BinaryFormat/LLVMBuild.txt
+llvm/lib/Bitcode/CMakeLists.txt
+llvm/lib/Bitcode/LLVMBuild.txt
+llvm/lib/Bitcode/Reader/CMakeLists.txt
+llvm/lib/Bitcode/Reader/LLVMBuild.txt
+llvm/lib/Bitcode/Writer/CMakeLists.txt
+llvm/lib/Bitcode/Writer/LLVMBuild.txt
+llvm/lib/Bitstream/CMakeLists.txt
+llvm/lib/Bitstream/LLVMBuild.txt
+llvm/lib/Bitstream/Reader/CMakeLists.txt
+llvm/lib/Bitstream/Reader/LLVMBuild.txt
+llvm/lib/CMakeLists.txt
+llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
+llvm/lib/CodeGen/AsmPrinter/LLVMBuild.txt
+llvm/lib/CodeGen/CMakeLists.txt
+llvm/lib/CodeGen/GlobalISel/CMakeLists.txt
+llvm/lib/CodeGen/GlobalISel/LLVMBuild.txt
+llvm/lib/CodeGen/LLVMBuild.txt
+llvm/lib/CodeGen/MIRParser/CMakeLists.txt
+llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
+llvm/lib/CodeGen/README.txt
+llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
+llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
+llvm/lib/DebugInfo/CMakeLists.txt
+llvm/lib/DebugInfo/CodeView/CMakeLists.txt
+llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
+llvm/lib/DebugInfo/DWARF/CMakeLists.txt
+llvm/lib/DebugInfo/DWARF/LLVMBuild.txt
+llvm/lib/DebugInfo/GSYM/CMakeLists.txt
+llvm/lib/DebugInfo/GSYM/LLVMBuild.txt
+llvm/lib/DebugInfo/LLVMBuild.txt
+llvm/lib/DebugInfo/MSF/CMakeLists.txt
+llvm/lib/DebugInfo/MSF/LLVMBuild.txt
+llvm/lib/DebugInfo/PDB/CMakeLists.txt
+llvm/lib/DebugInfo/PDB/LLVMBuild.txt
+llvm/lib/DebugInfo/Symbolize/CMakeLists.txt
+llvm/lib/DebugInfo/Symbolize/LLVMBuild.txt
+llvm/lib/Demangle/CMakeLists.txt
+llvm/lib/Demangle/LLVMBuild.txt
+llvm/lib/ExecutionEngine/CMakeLists.txt
+llvm/lib/ExecutionEngine/IntelJITEvents/CMakeLists.txt
+llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
+llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
+llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
+llvm/lib/ExecutionEngine/JITLink/CMakeLists.txt
+llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt
+llvm/lib/ExecutionEngine/LLVMBuild.txt
+llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
+llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
+llvm/lib/ExecutionEngine/OProfileJIT/CMakeLists.txt
+llvm/lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt
+llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
+llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
+llvm/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt
+llvm/lib/ExecutionEngine/PerfJITEvents/LLVMBuild.txt
+llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
+llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
+llvm/lib/FuzzMutate/CMakeLists.txt
+llvm/lib/FuzzMutate/LLVMBuild.txt
+llvm/lib/Fuzzer/
+llvm/lib/IR/CMakeLists.txt
+llvm/lib/IR/LLVMBuild.txt
+llvm/lib/IRReader/CMakeLists.txt
+llvm/lib/IRReader/LLVMBuild.txt
+llvm/lib/LLVMBuild.txt
+llvm/lib/LTO/CMakeLists.txt
+llvm/lib/LTO/LLVMBuild.txt
+llvm/lib/LineEditor/CMakeLists.txt
+llvm/lib/LineEditor/LLVMBuild.txt
+llvm/lib/Linker/CMakeLists.txt
+llvm/lib/Linker/LLVMBuild.txt
+llvm/lib/MC/CMakeLists.txt
+llvm/lib/MC/LLVMBuild.txt
+llvm/lib/MC/MCDisassembler/CMakeLists.txt
+llvm/lib/MC/MCDisassembler/LLVMBuild.txt
+llvm/lib/MC/MCParser/CMakeLists.txt
+llvm/lib/MC/MCParser/LLVMBuild.txt
+llvm/lib/MCA/CMakeLists.txt
+llvm/lib/MCA/LLVMBuild.txt
+llvm/lib/Object/CMakeLists.txt
+llvm/lib/Object/LLVMBuild.txt
+llvm/lib/ObjectYAML/CMakeLists.txt
+llvm/lib/ObjectYAML/LLVMBuild.txt
+llvm/lib/Option/CMakeLists.txt
+llvm/lib/Option/LLVMBuild.txt
+llvm/lib/Passes/CMakeLists.txt
+llvm/lib/Passes/LLVMBuild.txt
+llvm/lib/ProfileData/CMakeLists.txt
+llvm/lib/ProfileData/Coverage/CMakeLists.txt
+llvm/lib/ProfileData/Coverage/LLVMBuild.txt
+llvm/lib/ProfileData/LLVMBuild.txt
+llvm/lib/Remarks/CMakeLists.txt
+llvm/lib/Remarks/LLVMBuild.txt
+llvm/lib/Support/CMakeLists.txt
+llvm/lib/Support/LLVMBuild.txt
+llvm/lib/TableGen/CMakeLists.txt
+llvm/lib/TableGen/LLVMBuild.txt
+llvm/lib/Target/AArch64/AsmParser/CMakeLists.txt
+llvm/lib/Target/AArch64/AsmParser/LLVMBuild.txt
+llvm/lib/Target/AArch64/CMakeLists.txt
+llvm/lib/Target/AArch64/Disassembler/CMakeLists.txt
+llvm/lib/Target/AArch64/Disassembler/LLVMBuild.txt
+llvm/lib/Target/AArch64/LLVMBuild.txt
+llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
+llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/AArch64/Utils/CMakeLists.txt
+llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
+llvm/lib/Target/AMDGPU/AsmParser/CMakeLists.txt
+llvm/lib/Target/AMDGPU/AsmParser/LLVMBuild.txt
+llvm/lib/Target/AMDGPU/CMakeLists.txt
+llvm/lib/Target/AMDGPU/Disassembler/CMakeLists.txt
+llvm/lib/Target/AMDGPU/Disassembler/LLVMBuild.txt
+llvm/lib/Target/AMDGPU/LLVMBuild.txt
+llvm/lib/Target/AMDGPU/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/AMDGPU/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
+llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
+llvm/lib/Target/AMDGPU/Utils/LLVMBuild.txt
+llvm/lib/Target/ARC/CMakeLists.txt
+llvm/lib/Target/ARC/Disassembler/CMakeLists.txt
+llvm/lib/Target/ARC/Disassembler/LLVMBuild.txt
+llvm/lib/Target/ARC/LLVMBuild.txt
+llvm/lib/Target/ARC/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/ARC/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/ARC/TargetInfo/CMakeLists.txt
+llvm/lib/Target/ARC/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/ARM/AsmParser/CMakeLists.txt
+llvm/lib/Target/ARM/AsmParser/LLVMBuild.txt
+llvm/lib/Target/ARM/CMakeLists.txt
+llvm/lib/Target/ARM/Disassembler/CMakeLists.txt
+llvm/lib/Target/ARM/Disassembler/LLVMBuild.txt
+llvm/lib/Target/ARM/LLVMBuild.txt
+llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/ARM/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/ARM/README-Thumb.txt
+llvm/lib/Target/ARM/README-Thumb2.txt
+llvm/lib/Target/ARM/README.txt
+llvm/lib/Target/ARM/TargetInfo/CMakeLists.txt
+llvm/lib/Target/ARM/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/ARM/Utils/CMakeLists.txt
+llvm/lib/Target/ARM/Utils/LLVMBuild.txt
+llvm/lib/Target/AVR/AsmParser/CMakeLists.txt
+llvm/lib/Target/AVR/AsmParser/LLVMBuild.txt
+llvm/lib/Target/AVR/CMakeLists.txt
+llvm/lib/Target/AVR/Disassembler/CMakeLists.txt
+llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt
+llvm/lib/Target/AVR/LLVMBuild.txt
+llvm/lib/Target/AVR/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/AVR/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/AVR/TargetInfo/CMakeLists.txt
+llvm/lib/Target/AVR/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/BPF/AsmParser/CMakeLists.txt
+llvm/lib/Target/BPF/AsmParser/LLVMBuild.txt
+llvm/lib/Target/BPF/CMakeLists.txt
+llvm/lib/Target/BPF/Disassembler/CMakeLists.txt
+llvm/lib/Target/BPF/Disassembler/LLVMBuild.txt
+llvm/lib/Target/BPF/LLVMBuild.txt
+llvm/lib/Target/BPF/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/BPF/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/BPF/TargetInfo/CMakeLists.txt
+llvm/lib/Target/BPF/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/CMakeLists.txt
+llvm/lib/Target/Hexagon/AsmParser/CMakeLists.txt
+llvm/lib/Target/Hexagon/AsmParser/LLVMBuild.txt
+llvm/lib/Target/Hexagon/CMakeLists.txt
+llvm/lib/Target/Hexagon/Disassembler/CMakeLists.txt
+llvm/lib/Target/Hexagon/Disassembler/LLVMBuild.txt
+llvm/lib/Target/Hexagon/LLVMBuild.txt
+llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/Hexagon/TargetInfo/CMakeLists.txt
+llvm/lib/Target/Hexagon/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/LLVMBuild.txt
+llvm/lib/Target/Lanai/AsmParser/CMakeLists.txt
+llvm/lib/Target/Lanai/AsmParser/LLVMBuild.txt
+llvm/lib/Target/Lanai/CMakeLists.txt
+llvm/lib/Target/Lanai/Disassembler/CMakeLists.txt
+llvm/lib/Target/Lanai/Disassembler/LLVMBuild.txt
+llvm/lib/Target/Lanai/LLVMBuild.txt
+llvm/lib/Target/Lanai/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/Lanai/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/Lanai/TargetInfo/CMakeLists.txt
+llvm/lib/Target/Lanai/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/MSP430/AsmParser/CMakeLists.txt
+llvm/lib/Target/MSP430/AsmParser/LLVMBuild.txt
+llvm/lib/Target/MSP430/CMakeLists.txt
+llvm/lib/Target/MSP430/Disassembler/CMakeLists.txt
+llvm/lib/Target/MSP430/Disassembler/LLVMBuild.txt
+llvm/lib/Target/MSP430/LLVMBuild.txt
+llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/MSP430/README.txt
+llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt
+llvm/lib/Target/MSP430/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/Mips/AsmParser/CMakeLists.txt
+llvm/lib/Target/Mips/AsmParser/LLVMBuild.txt
+llvm/lib/Target/Mips/CMakeLists.txt
+llvm/lib/Target/Mips/Disassembler/CMakeLists.txt
+llvm/lib/Target/Mips/Disassembler/LLVMBuild.txt
+llvm/lib/Target/Mips/LLVMBuild.txt
+llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/Mips/TargetInfo/CMakeLists.txt
+llvm/lib/Target/Mips/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/NVPTX/CMakeLists.txt
+llvm/lib/Target/NVPTX/LLVMBuild.txt
+llvm/lib/Target/NVPTX/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/NVPTX/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/NVPTX/TargetInfo/CMakeLists.txt
+llvm/lib/Target/NVPTX/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/PowerPC/AsmParser/CMakeLists.txt
+llvm/lib/Target/PowerPC/AsmParser/LLVMBuild.txt
+llvm/lib/Target/PowerPC/CMakeLists.txt
+llvm/lib/Target/PowerPC/Disassembler/CMakeLists.txt
+llvm/lib/Target/PowerPC/Disassembler/LLVMBuild.txt
+llvm/lib/Target/PowerPC/LLVMBuild.txt
+llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/PowerPC/README.txt
+llvm/lib/Target/PowerPC/README_ALTIVEC.txt
+llvm/lib/Target/PowerPC/TargetInfo/CMakeLists.txt
+llvm/lib/Target/PowerPC/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/README.txt
+llvm/lib/Target/RISCV/AsmParser/CMakeLists.txt
+llvm/lib/Target/RISCV/AsmParser/LLVMBuild.txt
+llvm/lib/Target/RISCV/CMakeLists.txt
+llvm/lib/Target/RISCV/Disassembler/CMakeLists.txt
+llvm/lib/Target/RISCV/Disassembler/LLVMBuild.txt
+llvm/lib/Target/RISCV/LLVMBuild.txt
+llvm/lib/Target/RISCV/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/RISCV/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/RISCV/TargetInfo/CMakeLists.txt
+llvm/lib/Target/RISCV/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/RISCV/Utils/CMakeLists.txt
+llvm/lib/Target/RISCV/Utils/LLVMBuild.txt
+llvm/lib/Target/Sparc/AsmParser/CMakeLists.txt
+llvm/lib/Target/Sparc/AsmParser/LLVMBuild.txt
+llvm/lib/Target/Sparc/CMakeLists.txt
+llvm/lib/Target/Sparc/Disassembler/CMakeLists.txt
+llvm/lib/Target/Sparc/Disassembler/LLVMBuild.txt
+llvm/lib/Target/Sparc/LLVMBuild.txt
+llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/Sparc/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/Sparc/README.txt
+llvm/lib/Target/Sparc/TargetInfo/CMakeLists.txt
+llvm/lib/Target/Sparc/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/SystemZ/AsmParser/CMakeLists.txt
+llvm/lib/Target/SystemZ/AsmParser/LLVMBuild.txt
+llvm/lib/Target/SystemZ/CMakeLists.txt
+llvm/lib/Target/SystemZ/Disassembler/CMakeLists.txt
+llvm/lib/Target/SystemZ/Disassembler/LLVMBuild.txt
+llvm/lib/Target/SystemZ/LLVMBuild.txt
+llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/SystemZ/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt
+llvm/lib/Target/SystemZ/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/WebAssembly/AsmParser/CMakeLists.txt
+llvm/lib/Target/WebAssembly/AsmParser/LLVMBuild.txt
+llvm/lib/Target/WebAssembly/CMakeLists.txt
+llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
+llvm/lib/Target/WebAssembly/Disassembler/LLVMBuild.txt
+llvm/lib/Target/WebAssembly/LLVMBuild.txt
+llvm/lib/Target/WebAssembly/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/WebAssembly/TargetInfo/CMakeLists.txt
+llvm/lib/Target/WebAssembly/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/X86/AsmParser/CMakeLists.txt
+llvm/lib/Target/X86/AsmParser/LLVMBuild.txt
+llvm/lib/Target/X86/CMakeLists.txt
+llvm/lib/Target/X86/Disassembler/CMakeLists.txt
+llvm/lib/Target/X86/Disassembler/LLVMBuild.txt
+llvm/lib/Target/X86/LLVMBuild.txt
+llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/X86/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/X86/README-FPStack.txt
+llvm/lib/Target/X86/README-SSE.txt
+llvm/lib/Target/X86/README-X86-64.txt
+llvm/lib/Target/X86/README.txt
+llvm/lib/Target/X86/TargetInfo/CMakeLists.txt
+llvm/lib/Target/X86/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/X86/Utils/CMakeLists.txt

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


More information about the svn-src-all mailing list