svn commit: r344212 - in stable/12: . contrib/compiler-rt contrib/compiler-rt/include/sanitizer contrib/compiler-rt/include/xray contrib/compiler-rt/lib/BlocksRuntime contrib/compiler-rt/lib/asan c...

Dimitry Andric dim at FreeBSD.org
Sat Feb 16 15:43:59 UTC 2019


Author: dim
Date: Sat Feb 16 15:43:49 2019
New Revision: 344212
URL: https://svnweb.freebsd.org/changeset/base/344212

Log:
  Merge clang 7.0.1 and several follow-up changes
  
  MFC r341825:
  
  Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
  the upstream release_70 branch r348686 (effectively, 7.0.1 rc3).  The
  release will follow very soon, but no more functional changes are
  expected.
  
  Release notes for llvm, clang and lld 7.0.0 are available here:
  <http://releases.llvm.org/7.0.0/docs/ReleaseNotes.html>
  <http://releases.llvm.org/7.0.0/tools/clang/docs/ReleaseNotes.html>
  <http://releases.llvm.org/7.0.0/tools/lld/docs/ReleaseNotes.html>
  
  PR:		230240, 230355
  Relnotes:	yes
  
  MFC r342123:
  
  Update clang, llvm, lld, lldb, compiler-rt and libc++ version number to
  7.0.1 release r349250.  There were no functional changes since the 7.0.1
  rc3 import.
  
  PR:		230240, 230355
  Relnotes:	yes
  
  r343429 | emaste | 2019-01-25 15:46:13 +0100 (Fri, 25 Jan 2019) | 16 lines
  
  clang: default to DWARF 4 as of FreeBSD 13
  
  FreeBSD previously defaulted to DWARF 2 because several tools (gdb,
  ctfconvert, etc.) did not support later versions.  These have either
  been fixed or are deprecated.
  
  Note that gdb 6 still exists but has been moved out of $PATH into
  /usr/libexec and is intended only for use by crashinfo(8).  The kernel
  build sets the DWARF version explicitly via -gdwarf2, so this should
  have no effect there.
  
  PR:		234887 [exp-run]
  Reviewed by:	markj
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D17930
  
  MFC r343916:
  
  Pull in r352607 from upstream llvm trunk (by Craig Topper):
  
    [X86] Add FPSW as a Def on some FP instructions that were missing it.
  
  Pull in r353141 from upstream llvm trunk (by Craig Topper):
  
    [X86] Connect the default fpsr and dirflag clobbers in inline
    assembly to the registers we have defined for them.
  
    Summary:
    We don't currently map these constraints to physical register numbers
    so they don't make it to the MachineIR representation of inline
    assembly.
  
    This could have problems for proper dependency tracking in the
    machine schedulers though I don't have a test case that shows that.
  
    Reviewers: rnk
  
    Reviewed By: rnk
  
    Subscribers: eraman, llvm-commits
  
    Tags: #llvm
  
    Differential Revision: https://reviews.llvm.org/D57641
  
  Pull in r353489 from upstream llvm trunk (by Craig Topper):
  
    [X86] Add FPCW as a register and start using it as an implicit use on
    floating point instructions.
  
    Summary:
    FPCW contains the rounding mode control which we manipulate to
    implement fp to integer conversion by changing the roudning mode,
    storing the value to the stack, and then changing the rounding mode
    back. Because we didn't model FPCW and its dependency chain, other
    instructions could be scheduled into the middle of the sequence.
  
    This patch introduces the register and adds it as an implciit def of
    FLDCW and implicit use of the FP binary arithmetic instructions and
    store instructions. There are more instructions that need to be
    updated, but this is a good start. I believe this fixes at least the
    reduced test case from PR40529.
  
    Reviewers: RKSimon, spatel, rnk, efriedma, andrew.w.kaylor
  
    Subscribers: dim, llvm-commits
  
    Tags: #llvm
  
    Differential Revision: https://reviews.llvm.org/D57735
  
  These should fix a problem in clang 7.0 where it would sometimes emit
  long double floating point instructions in a slightly wrong order,
  leading to failures in our libm tests.  In particular, the cbrt_test
  test case 'cbrtl_powl' and the trig_test test case 'reduction'.
  
  Also bump __FreeBSD_cc_version, to be able to detect this in our test
  suite.
  
  Reported by:    lwhsu
  PR:		234040
  Upstream PR:	https://bugs.llvm.org/show_bug.cgi?id=40206
  
  MFC r344056:
  
  Pull in r339734 from upstream llvm trunk (by Eli Friedman):
  
    [ARM] Make PerformSHLSimplify add nodes to the DAG worklist correctly.
  
    Intentionally excluding nodes from the DAGCombine worklist is likely
    to lead to weird optimizations and infinite loops, so it's generally
    a bad idea.
  
    To avoid the infinite loops, fix DAGCombine to use the
    isDesirableToCommuteWithShift target hook before performing the
    transforms in question, and implement the target hook in the ARM
    backend disable the transforms in question.
  
    Fixes https://bugs.llvm.org/show_bug.cgi?id=38530 . (I don't have a
    reduced testcase for that bug. But we should have sufficient test
    coverage for PerformSHLSimplify given that we're not playing weird
    tricks with the worklist. I can try to bugpoint it if necessary,
    though.)
  
    Differential Revision: https://reviews.llvm.org/D50667
  
  This should fix a possible hang when compiling sys/dev/nxge/if_nxge.c
  (which exists now only in the stable/11 branch) for arm.

Added:
  stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
     - copied unchanged from r341825, head/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
  stable/12/contrib/compiler-rt/lib/asan/asan_malloc_local.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/asan/asan_malloc_local.h
  stable/12/contrib/compiler-rt/lib/asan/asan_mapping_myriad.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/asan/asan_mapping_myriad.h
  stable/12/contrib/compiler-rt/lib/asan/asan_rtems.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/asan/asan_rtems.cc
  stable/12/contrib/compiler-rt/lib/builtins/arm/chkstk.S
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/builtins/arm/chkstk.S
  stable/12/contrib/compiler-rt/lib/builtins/hexagon/
     - copied from r341825, head/contrib/compiler-rt/lib/builtins/hexagon/
  stable/12/contrib/compiler-rt/lib/builtins/riscv/
     - copied from r341825, head/contrib/compiler-rt/lib/builtins/riscv/
     - copied from r341825, head/contrib/compiler-rt/lib/fuzzer/
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.h
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_report.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/hwasan/hwasan_report.h
  stable/12/contrib/compiler-rt/lib/msan/msan_report.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/msan/msan_report.h
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_rtems.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_rtems.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
  stable/12/contrib/compiler-rt/lib/scudo/scudo_errors.cpp
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/scudo/scudo_errors.cpp
  stable/12/contrib/compiler-rt/lib/scudo/scudo_errors.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/scudo/scudo_errors.h
  stable/12/contrib/compiler-rt/lib/scudo/scudo_malloc.cpp
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/scudo/scudo_malloc.cpp
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_monitor.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/ubsan/ubsan_monitor.cc
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_monitor.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/ubsan/ubsan_monitor.h
  stable/12/contrib/compiler-rt/lib/xray/xray_allocator.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_allocator.h
  stable/12/contrib/compiler-rt/lib/xray/xray_basic_flags.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_basic_flags.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_basic_flags.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_basic_flags.h
  stable/12/contrib/compiler-rt/lib/xray/xray_basic_flags.inc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_basic_flags.inc
  stable/12/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_basic_logging.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_basic_logging.h
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_flags.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_fdr_flags.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_flags.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_fdr_flags.h
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_flags.inc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_fdr_flags.inc
  stable/12/contrib/compiler-rt/lib/xray/xray_function_call_trie.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_function_call_trie.h
  stable/12/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_profile_collector.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_profile_collector.h
  stable/12/contrib/compiler-rt/lib/xray/xray_profiling.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_profiling.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_profiling_flags.cc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_profiling_flags.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_profiling_flags.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_profiling_flags.h
  stable/12/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
  stable/12/contrib/compiler-rt/lib/xray/xray_recursion_guard.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_recursion_guard.h
  stable/12/contrib/compiler-rt/lib/xray/xray_segmented_array.h
     - copied unchanged from r341825, head/contrib/compiler-rt/lib/xray/xray_segmented_array.h
  stable/12/contrib/libc++/include/__errc
     - copied unchanged from r341825, head/contrib/libc++/include/__errc
  stable/12/contrib/libc++/include/__node_handle
     - copied unchanged from r341825, head/contrib/libc++/include/__node_handle
  stable/12/contrib/libc++/include/charconv
     - copied unchanged from r341825, head/contrib/libc++/include/charconv
  stable/12/contrib/libc++/include/compare
     - copied unchanged from r341825, head/contrib/libc++/include/compare
  stable/12/contrib/libc++/include/experimental/simd
     - copied unchanged from r341825, head/contrib/libc++/include/experimental/simd
  stable/12/contrib/libc++/include/filesystem
     - copied unchanged from r341825, head/contrib/libc++/include/filesystem
  stable/12/contrib/libc++/include/span
     - copied unchanged from r341825, head/contrib/libc++/include/span
  stable/12/contrib/libc++/include/version
     - copied unchanged from r341825, head/contrib/libc++/include/version
  stable/12/contrib/libc++/src/charconv.cpp
     - copied unchanged from r341825, head/contrib/libc++/src/charconv.cpp
  stable/12/contrib/libc++/src/filesystem/
     - copied from r341825, head/contrib/libc++/src/filesystem/
  stable/12/contrib/libc++/src/include/apple_availability.h
     - copied unchanged from r341825, head/contrib/libc++/src/include/apple_availability.h
  stable/12/contrib/llvm/include/llvm-c/Comdat.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm-c/Comdat.h
  stable/12/contrib/llvm/include/llvm-c/DataTypes.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm-c/DataTypes.h
  stable/12/contrib/llvm/include/llvm-c/DisassemblerTypes.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm-c/DisassemblerTypes.h
  stable/12/contrib/llvm/include/llvm-c/Transforms/InstCombine.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm-c/Transforms/InstCombine.h
  stable/12/contrib/llvm/include/llvm-c/Transforms/Utils.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm-c/Transforms/Utils.h
  stable/12/contrib/llvm/include/llvm/ADT/Any.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/ADT/Any.h
  stable/12/contrib/llvm/include/llvm/ADT/FunctionExtras.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/ADT/FunctionExtras.h
  stable/12/contrib/llvm/include/llvm/Analysis/MustExecute.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Analysis/MustExecute.h
  stable/12/contrib/llvm/include/llvm/Analysis/PhiValues.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Analysis/PhiValues.h
  stable/12/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
  stable/12/contrib/llvm/include/llvm/Analysis/Utils/
     - copied from r341825, head/contrib/llvm/include/llvm/Analysis/Utils/
  stable/12/contrib/llvm/include/llvm/BinaryFormat/DynamicTags.def
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/BinaryFormat/DynamicTags.def
  stable/12/contrib/llvm/include/llvm/CodeGen/AccelTable.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/AccelTable.h
  stable/12/contrib/llvm/include/llvm/CodeGen/CommandFlags.inc
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/CommandFlags.inc
  stable/12/contrib/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LoopTraversal.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/LoopTraversal.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineOutliner.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/MachineOutliner.h
  stable/12/contrib/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
  stable/12/contrib/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
  stable/12/contrib/llvm/include/llvm/IR/DomTreeUpdater.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/IR/DomTreeUpdater.h
  stable/12/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
  stable/12/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
  stable/12/contrib/llvm/include/llvm/Object/CVDebugRecord.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Object/CVDebugRecord.h
  stable/12/contrib/llvm/include/llvm/Object/WasmTraits.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Object/WasmTraits.h
  stable/12/contrib/llvm/include/llvm/Passes/PassPlugin.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Passes/PassPlugin.h
  stable/12/contrib/llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
  stable/12/contrib/llvm/include/llvm/Support/CheckedArithmetic.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/CheckedArithmetic.h
  stable/12/contrib/llvm/include/llvm/Support/DJB.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/DJB.h
  stable/12/contrib/llvm/include/llvm/Support/DataTypes.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/DataTypes.h
  stable/12/contrib/llvm/include/llvm/Support/InitLLVM.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/InitLLVM.h
  stable/12/contrib/llvm/include/llvm/Support/JSON.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/JSON.h
  stable/12/contrib/llvm/include/llvm/Support/MachineValueType.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/MachineValueType.h
  stable/12/contrib/llvm/include/llvm/Support/MemAlloc.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/MemAlloc.h
  stable/12/contrib/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
  stable/12/contrib/llvm/include/llvm/Support/TargetOpcodes.def
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/TargetOpcodes.def
  stable/12/contrib/llvm/include/llvm/Support/TaskQueue.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/TaskQueue.h
  stable/12/contrib/llvm/include/llvm/Support/VersionTuple.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/VersionTuple.h
  stable/12/contrib/llvm/include/llvm/Support/WithColor.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/WithColor.h
  stable/12/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
  stable/12/contrib/llvm/include/llvm/Target/CodeGenCWrappers.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Target/CodeGenCWrappers.h
  stable/12/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
  stable/12/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
  stable/12/contrib/llvm/include/llvm/Transforms/AggressiveInstCombine/
     - copied from r341825, head/contrib/llvm/include/llvm/Transforms/AggressiveInstCombine/
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/SampleProfile.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/IPO/SampleProfile.h
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/SyntheticCountsPropagation.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/IPO/SyntheticCountsPropagation.h
  stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
  stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
  stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
  stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Utils.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
  stable/12/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
     - copied unchanged from r341825, head/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
  stable/12/contrib/llvm/lib/Analysis/MustExecute.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Analysis/MustExecute.cpp
  stable/12/contrib/llvm/lib/Analysis/PhiValues.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Analysis/PhiValues.cpp
  stable/12/contrib/llvm/lib/Analysis/SyntheticCountsUtils.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Analysis/SyntheticCountsUtils.cpp
  stable/12/contrib/llvm/lib/BinaryFormat/Wasm.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/BinaryFormat/Wasm.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
  stable/12/contrib/llvm/lib/CodeGen/BreakFalseDeps.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/BreakFalseDeps.cpp
  stable/12/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
  stable/12/contrib/llvm/lib/CodeGen/ExecutionDomainFix.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/ExecutionDomainFix.cpp
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.cpp
  stable/12/contrib/llvm/lib/CodeGen/LoopTraversal.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/LoopTraversal.cpp
  stable/12/contrib/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
  stable/12/contrib/llvm/lib/CodeGen/ValueTypes.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/ValueTypes.cpp
  stable/12/contrib/llvm/lib/CodeGen/WasmEHPrepare.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/CodeGen/WasmEHPrepare.cpp
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
  stable/12/contrib/llvm/lib/Demangle/Compiler.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Demangle/Compiler.h
  stable/12/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
  stable/12/contrib/llvm/lib/Demangle/StringView.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Demangle/StringView.h
  stable/12/contrib/llvm/lib/Demangle/Utility.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Demangle/Utility.h
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/
     - copied from r341825, head/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/
  stable/12/contrib/llvm/lib/IR/DomTreeUpdater.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/IR/DomTreeUpdater.cpp
  stable/12/contrib/llvm/lib/MC/MCAsmMacro.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/MC/MCAsmMacro.cpp
  stable/12/contrib/llvm/lib/Passes/PassPlugin.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Passes/PassPlugin.cpp
  stable/12/contrib/llvm/lib/Support/DJB.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Support/DJB.cpp
  stable/12/contrib/llvm/lib/Support/InitLLVM.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Support/InitLLVM.cpp
  stable/12/contrib/llvm/lib/Support/JSON.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Support/JSON.cpp
  stable/12/contrib/llvm/lib/Support/UnicodeCaseFold.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Support/UnicodeCaseFold.cpp
  stable/12/contrib/llvm/lib/Support/VersionTuple.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Support/VersionTuple.cpp
  stable/12/contrib/llvm/lib/Support/WithColor.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Support/WithColor.cpp
  stable/12/contrib/llvm/lib/TableGen/JSONBackend.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/TableGen/JSONBackend.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/R600.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIProgramInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/SIProgramInfo.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
  stable/12/contrib/llvm/lib/Target/BPF/BPFMIPeephole.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/BPF/BPFMIPeephole.cpp
  stable/12/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.cpp
  stable/12/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterBanks.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/Mips/MipsRegisterBanks.td
  stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVMachineFunctionInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/RISCVMachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.cpp
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
  stable/12/contrib/llvm/lib/Target/WebAssembly/AsmParser/
     - copied from r341825, head/contrib/llvm/lib/Target/WebAssembly/AsmParser/
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.cpp
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.h
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
  stable/12/contrib/llvm/lib/Target/X86/ShadowCallStack.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/ShadowCallStack.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFoldTables.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86InstrFoldTables.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFoldTables.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86InstrFoldTables.h
  stable/12/contrib/llvm/lib/Target/X86/X86PfmCounters.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86PfmCounters.td
  stable/12/contrib/llvm/lib/Target/X86/X86SchedPredicates.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86SchedPredicates.td
  stable/12/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
  stable/12/contrib/llvm/lib/Transforms/AggressiveInstCombine/
     - copied from r341825, head/contrib/llvm/lib/Transforms/AggressiveInstCombine/
  stable/12/contrib/llvm/lib/Transforms/IPO/BlockExtractor.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/IPO/BlockExtractor.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/SCCP.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/IPO/SCCP.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineTables.td
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/InstCombine/InstCombineTables.td
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/SSAUpdaterBulk.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Utils/SSAUpdaterBulk.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanDominatorTree.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanDominatorTree.h
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
     - copied unchanged from r341825, head/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ComparisonCategories.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/AST/ComparisonCategories.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BitmaskEnum.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Basic/BitmaskEnum.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Features.def
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Basic/Features.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Stack.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Basic/Stack.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/arm_fp16.td
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Basic/arm_fp16.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions/
     - copied from r341825, head/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions/
  stable/12/contrib/llvm/tools/clang/lib/AST/ComparisonCategories.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/AST/ComparisonCategories.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.h
  stable/12/contrib/llvm/tools/clang/lib/Basic/XRayInstr.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Basic/XRayInstr.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.h
  stable/12/contrib/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_libdevice_declares.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_libdevice_declares.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/cldemoteintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/cldemoteintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/invpcidintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/invpcidintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/movdirintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/movdirintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/pconfigintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/pconfigintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/ptwriteintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/ptwriteintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/sgxintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/sgxintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/waitpkgintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/waitpkgintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObjectChecker.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObjectChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
  stable/12/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Inclusions/
     - copied from r341825, head/contrib/llvm/tools/clang/lib/Tooling/Inclusions/
  stable/12/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
  stable/12/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
  stable/12/contrib/llvm/tools/lld/COFF/ICF.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/COFF/ICF.h
  stable/12/contrib/llvm/tools/lld/COFF/MarkLive.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/COFF/MarkLive.h
  stable/12/contrib/llvm/tools/lld/Common/Timer.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/Common/Timer.cpp
  stable/12/contrib/llvm/tools/lld/ELF/Arch/Hexagon.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/ELF/Arch/Hexagon.cpp
  stable/12/contrib/llvm/tools/lld/ELF/CallGraphSort.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/ELF/CallGraphSort.cpp
  stable/12/contrib/llvm/tools/lld/ELF/CallGraphSort.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/ELF/CallGraphSort.h
  stable/12/contrib/llvm/tools/lld/ELF/MarkLive.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/ELF/MarkLive.h
  stable/12/contrib/llvm/tools/lld/docs/
     - copied from r341825, head/contrib/llvm/tools/lld/docs/
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Timer.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lld/include/lld/Common/Timer.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Args.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/Utility/Args.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Environment.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/Utility/Environment.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/module.modulemap
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/include/lldb/module.modulemap
  stable/12/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.h
  stable/12/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/
     - copied from r341825, head/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/
     - copied from r341825, head/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
  stable/12/contrib/llvm/tools/lldb/source/Utility/Args.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Utility/Args.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/Environment.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Utility/Environment.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/PPC64_DWARF_Registers.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/source/Utility/PPC64_DWARF_Registers.h
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/module.modulemap
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/tools/lldb-mi/module.modulemap
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
     - copied unchanged from r341825, head/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
  stable/12/contrib/llvm/tools/llvm-cov/CoverageExporter.h
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-cov/CoverageExporter.h
  stable/12/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
  stable/12/contrib/llvm/tools/llvm-mca/
     - copied from r341825, head/contrib/llvm/tools/llvm-mca/
  stable/12/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
  stable/12/contrib/llvm/tools/llvm-objcopy/StripOpts.td
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-objcopy/StripOpts.td
  stable/12/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
  stable/12/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.h
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.h
  stable/12/contrib/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
  stable/12/contrib/llvm/tools/llvm-xray/func-id-helper.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/func-id-helper.cpp
  stable/12/contrib/llvm/tools/llvm-xray/llvm-xray.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/llvm-xray.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-account.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-account.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-color-helper.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-color-helper.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-converter.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-converter.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-extract.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-extract.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-graph-diff.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-graph-diff.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-graph.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-graph.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-registry.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-registry.cpp
  stable/12/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
     - copied unchanged from r341825, head/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
  stable/12/contrib/llvm/tools/opt/Debugify.h
     - copied unchanged from r341825, head/contrib/llvm/tools/opt/Debugify.h
  stable/12/contrib/llvm/utils/TableGen/PredicateExpander.cpp
     - copied unchanged from r341825, head/contrib/llvm/utils/TableGen/PredicateExpander.cpp
  stable/12/contrib/llvm/utils/TableGen/PredicateExpander.h
     - copied unchanged from r341825, head/contrib/llvm/utils/TableGen/PredicateExpander.h
  stable/12/contrib/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
     - copied unchanged from r341825, head/contrib/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
     - copied unchanged from r341825, head/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
     - copied unchanged from r341825, head/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
  stable/12/lib/libc++fs/
     - copied from r341825, head/lib/libc++fs/
  stable/12/lib/libclang_rt/fuzzer/
     - copied from r341825, head/lib/libclang_rt/fuzzer/
  stable/12/lib/libclang_rt/fuzzer_no_main/
     - copied from r341825, head/lib/libclang_rt/fuzzer_no_main/
  stable/12/lib/libclang_rt/msan/
     - copied from r341825, head/lib/libclang_rt/msan/
  stable/12/lib/libclang_rt/msan_cxx/
     - copied from r341825, head/lib/libclang_rt/msan_cxx/
  stable/12/usr.bin/clang/llvm-mca/
     - copied from r341825, head/usr.bin/clang/llvm-mca/
Directory Properties:
  stable/12/contrib/compiler-rt/lib/fuzzer/   (props changed)
Deleted:
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_freebsd.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.cc
  stable/12/contrib/compiler-rt/lib/scudo/scudo_interceptors.cpp
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_logging_impl.h
  stable/12/contrib/compiler-rt/lib/xray/xray_inmemory_log.cc
  stable/12/contrib/compiler-rt/lib/xray/xray_inmemory_log.h
  stable/12/contrib/libc++/src/experimental/filesystem/directory_iterator.cpp
  stable/12/contrib/libc++/src/experimental/filesystem/filesystem_time_helper.h
  stable/12/contrib/libc++/src/experimental/filesystem/operations.cpp
  stable/12/contrib/libc++/src/experimental/filesystem/path.cpp
  stable/12/contrib/llvm/include/llvm/Analysis/ObjectUtils.h
  stable/12/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/WebAssembly.def
  stable/12/contrib/llvm/include/llvm/CodeGen/CommandFlags.def
  stable/12/contrib/llvm/include/llvm/CodeGen/ExecutionDepsFix.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineValueType.h
  stable/12/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.def
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFile.h
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetOpcodes.def
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
  stable/12/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.def
  stable/12/contrib/llvm/include/llvm/Support/AMDGPUKernelDescriptor.h
  stable/12/contrib/llvm/include/llvm/Support/CodeGenCWrappers.h
  stable/12/contrib/llvm/include/llvm/Transforms/GCOVProfiler.h
  stable/12/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
  stable/12/contrib/llvm/include/llvm/Transforms/PGOInstrumentation.h
  stable/12/contrib/llvm/include/llvm/Transforms/SampleProfile.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
  stable/12/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
  stable/12/contrib/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h
  stable/12/contrib/llvm/lib/IR/ValueTypes.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUHSAMetadataStreamer.cpp
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUHSAMetadataStreamer.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/Processors.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600Intrinsics.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCMachineBasicBlockUtils.h
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
  stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanBuilder.h
  stable/12/contrib/llvm/patches/
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h
  stable/12/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.h
  stable/12/contrib/llvm/tools/lld/COFF/Strings.cpp
  stable/12/contrib/llvm/tools/lld/COFF/Strings.h
  stable/12/contrib/llvm/tools/lld/ELF/Strings.cpp
  stable/12/contrib/llvm/tools/lld/ELF/Strings.h
  stable/12/contrib/llvm/tools/lld/lib/Support/
  stable/12/contrib/llvm/tools/lld/tools/linker-script-test/
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/History.h
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.h
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/win-minidump/
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.h
  stable/12/contrib/llvm/tools/lldb/source/Utility/History.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
  stable/12/contrib/llvm/tools/lldb/tools/intel-mpx/
  stable/12/contrib/llvm/tools/lli/OrcLazyJIT.cpp
  stable/12/contrib/llvm/tools/lli/OrcLazyJIT.h
  stable/12/contrib/llvm/tools/llvm-pdbutil/Diff.cpp
  stable/12/contrib/llvm/tools/llvm-pdbutil/Diff.h
  stable/12/contrib/llvm/tools/llvm-pdbutil/DiffPrinter.cpp
  stable/12/contrib/llvm/tools/llvm-pdbutil/DiffPrinter.h
  stable/12/contrib/llvm/tools/llvm-xray/func-id-helper.cc
  stable/12/contrib/llvm/tools/llvm-xray/llvm-xray.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-account.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-color-helper.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-converter.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-extract.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-graph-diff.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-graph.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-registry.cc
  stable/12/contrib/llvm/tools/llvm-xray/xray-stacks.cc
  stable/12/lib/clang/include/llvm/Support/DataTypes.h
  stable/12/usr.bin/clang/lld/ld.lld.1
Modified:
  stable/12/ObsoleteFiles.inc
  stable/12/UPDATING
  stable/12/contrib/compiler-rt/LICENSE.TXT
  stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
  stable/12/contrib/compiler-rt/include/sanitizer/msan_interface.h
  stable/12/contrib/compiler-rt/include/sanitizer/scudo_interface.h   (contents, props changed)
  stable/12/contrib/compiler-rt/include/xray/xray_interface.h   (contents, props changed)
  stable/12/contrib/compiler-rt/include/xray/xray_log_interface.h   (contents, props changed)
  stable/12/contrib/compiler-rt/include/xray/xray_records.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_allocator.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_allocator.h
  stable/12/contrib/compiler-rt/lib/asan/asan_debugging.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_descriptions.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_descriptions.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_errors.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_errors.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_flags.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_flags.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_globals.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_globals_win.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_interceptors.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_interceptors.h
  stable/12/contrib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_internal.h
  stable/12/contrib/compiler-rt/lib/asan/asan_mac.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_mapping.h
  stable/12/contrib/compiler-rt/lib/asan/asan_memory_profile.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_new_delete.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_poisoning.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_poisoning.h
  stable/12/contrib/compiler-rt/lib/asan/asan_report.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_report.h
  stable/12/contrib/compiler-rt/lib/asan/asan_rtl.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_shadow_setup.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_thread.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_win.cc
  stable/12/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/clear_cache.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/clzdi2.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/cpu_model.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ctzdi2.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/emutls.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/int_types.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/builtins/os_version_check.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/cfi/cfi.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/cfi/cfi_blacklist.txt   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/dfsan.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/done_abilist.txt   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_interceptors.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_sideline_linux.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_report.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_thread.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/interception/interception.h
  stable/12/contrib/compiler-rt/lib/interception/interception_linux.cc
  stable/12/contrib/compiler-rt/lib/interception/interception_linux.h
  stable/12/contrib/compiler-rt/lib/interception/interception_win.cc
  stable/12/contrib/compiler-rt/lib/lsan/lsan.cc
  stable/12/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
  stable/12/contrib/compiler-rt/lib/lsan/lsan_allocator.h
  stable/12/contrib/compiler-rt/lib/lsan/lsan_common.cc
  stable/12/contrib/compiler-rt/lib/lsan/lsan_common.h
  stable/12/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
  stable/12/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/lsan/lsan_thread.cc
  stable/12/contrib/compiler-rt/lib/msan/msan.cc
  stable/12/contrib/compiler-rt/lib/msan/msan.h
  stable/12/contrib/compiler-rt/lib/msan/msan_allocator.cc
  stable/12/contrib/compiler-rt/lib/msan/msan_interceptors.cc
  stable/12/contrib/compiler-rt/lib/msan/msan_interface_internal.h
  stable/12/contrib/compiler-rt/lib/msan/msan_linux.cc
  stable/12/contrib/compiler-rt/lib/msan/msan_new_delete.cc
  stable/12/contrib/compiler-rt/lib/msan/msan_poisoning.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_report.cc
  stable/12/contrib/compiler-rt/lib/profile/GCDAProfiling.c
  stable/12/contrib/compiler-rt/lib/profile/InstrProfData.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfiling.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingFile.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingMerge.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingMergeFile.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPlatformLinux.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPort.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingValue.c   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/safestack/safestack.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_stats.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_other.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_vector.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
  stable/12/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_allocator.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_allocator.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_allocator_combined.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_allocator_secondary.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_flags.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_interface_internal.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_new_delete.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_platform.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_termination.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_tsd.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_tsd_exclusive.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_tsd_exclusive.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_tsd_shared.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_tsd_shared.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_utils.cpp   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/stats/stats.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/go/test.c
  stable/12/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_checks.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_diag.h
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_platform.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_AArch64.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_arm.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_buffer_queue.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_buffer_queue.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_flags.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_flags.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_flags.inc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_init.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_interface.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_interface_internal.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_log_interface.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_mips.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_mips64.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_powerpc64.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_utils.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_utils.h   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_x86_64.cc   (contents, props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_x86_64.inc   (contents, props changed)
  stable/12/contrib/libc++/include/__bsd_locale_fallbacks.h   (contents, props changed)
  stable/12/contrib/libc++/include/__config
  stable/12/contrib/libc++/include/__functional_03
  stable/12/contrib/libc++/include/__functional_base
  stable/12/contrib/libc++/include/__hash_table
  stable/12/contrib/libc++/include/__libcpp_version
  stable/12/contrib/libc++/include/__locale
  stable/12/contrib/libc++/include/__mutex_base
  stable/12/contrib/libc++/include/__nullptr
  stable/12/contrib/libc++/include/__sso_allocator
  stable/12/contrib/libc++/include/__string
  stable/12/contrib/libc++/include/__threading_support
  stable/12/contrib/libc++/include/__tree
  stable/12/contrib/libc++/include/algorithm
  stable/12/contrib/libc++/include/any
  stable/12/contrib/libc++/include/array
  stable/12/contrib/libc++/include/atomic
  stable/12/contrib/libc++/include/cfloat
  stable/12/contrib/libc++/include/chrono
  stable/12/contrib/libc++/include/cmath
  stable/12/contrib/libc++/include/codecvt
  stable/12/contrib/libc++/include/complex
  stable/12/contrib/libc++/include/cstdlib
  stable/12/contrib/libc++/include/ctime
  stable/12/contrib/libc++/include/deque
  stable/12/contrib/libc++/include/exception
  stable/12/contrib/libc++/include/experimental/__config
  stable/12/contrib/libc++/include/experimental/algorithm
  stable/12/contrib/libc++/include/experimental/any
  stable/12/contrib/libc++/include/experimental/chrono
  stable/12/contrib/libc++/include/experimental/coroutine
  stable/12/contrib/libc++/include/experimental/dynarray
  stable/12/contrib/libc++/include/experimental/filesystem
  stable/12/contrib/libc++/include/experimental/functional
  stable/12/contrib/libc++/include/experimental/memory_resource
  stable/12/contrib/libc++/include/experimental/numeric
  stable/12/contrib/libc++/include/experimental/optional
  stable/12/contrib/libc++/include/experimental/propagate_const
  stable/12/contrib/libc++/include/experimental/ratio
  stable/12/contrib/libc++/include/experimental/string_view
  stable/12/contrib/libc++/include/experimental/system_error
  stable/12/contrib/libc++/include/experimental/tuple
  stable/12/contrib/libc++/include/experimental/type_traits
  stable/12/contrib/libc++/include/float.h   (contents, props changed)
  stable/12/contrib/libc++/include/forward_list
  stable/12/contrib/libc++/include/fstream
  stable/12/contrib/libc++/include/functional
  stable/12/contrib/libc++/include/future
  stable/12/contrib/libc++/include/initializer_list
  stable/12/contrib/libc++/include/ios
  stable/12/contrib/libc++/include/istream
  stable/12/contrib/libc++/include/iterator
  stable/12/contrib/libc++/include/list
  stable/12/contrib/libc++/include/locale
  stable/12/contrib/libc++/include/map
  stable/12/contrib/libc++/include/math.h   (contents, props changed)
  stable/12/contrib/libc++/include/memory
  stable/12/contrib/libc++/include/module.modulemap
  stable/12/contrib/libc++/include/new
  stable/12/contrib/libc++/include/numeric
  stable/12/contrib/libc++/include/optional
  stable/12/contrib/libc++/include/ostream
  stable/12/contrib/libc++/include/queue
  stable/12/contrib/libc++/include/random
  stable/12/contrib/libc++/include/regex
  stable/12/contrib/libc++/include/set
  stable/12/contrib/libc++/include/shared_mutex
  stable/12/contrib/libc++/include/stack
  stable/12/contrib/libc++/include/stdexcept
  stable/12/contrib/libc++/include/stdio.h   (contents, props changed)
  stable/12/contrib/libc++/include/streambuf
  stable/12/contrib/libc++/include/string
  stable/12/contrib/libc++/include/string_view
  stable/12/contrib/libc++/include/system_error
  stable/12/contrib/libc++/include/tgmath.h   (contents, props changed)
  stable/12/contrib/libc++/include/thread
  stable/12/contrib/libc++/include/tuple
  stable/12/contrib/libc++/include/type_traits
  stable/12/contrib/libc++/include/typeinfo
  stable/12/contrib/libc++/include/unordered_map
  stable/12/contrib/libc++/include/unordered_set
  stable/12/contrib/libc++/include/utility
  stable/12/contrib/libc++/include/valarray
  stable/12/contrib/libc++/include/variant
  stable/12/contrib/libc++/include/vector
  stable/12/contrib/libc++/src/any.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/bind.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/chrono.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/experimental/memory_resource.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/future.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/include/config_elast.h   (contents, props changed)
  stable/12/contrib/libc++/src/locale.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/memory.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/mutex.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/new.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/optional.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/shared_mutex.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/support/runtime/exception_msvc.ipp
  stable/12/contrib/libc++/src/support/runtime/exception_pointer_msvc.ipp
  stable/12/contrib/libc++/src/system_error.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/typeinfo.cpp   (contents, props changed)
  stable/12/contrib/libc++/src/utility.cpp   (contents, props changed)
  stable/12/contrib/llvm/LICENSE.TXT
  stable/12/contrib/llvm/include/llvm-c/Core.h
  stable/12/contrib/llvm/include/llvm-c/DebugInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm-c/Disassembler.h
  stable/12/contrib/llvm/include/llvm-c/ExecutionEngine.h
  stable/12/contrib/llvm/include/llvm-c/Initialization.h
  stable/12/contrib/llvm/include/llvm-c/OrcBindings.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm-c/Support.h
  stable/12/contrib/llvm/include/llvm-c/TargetMachine.h
  stable/12/contrib/llvm/include/llvm-c/Transforms/Scalar.h
  stable/12/contrib/llvm/include/llvm-c/Transforms/Vectorize.h
  stable/12/contrib/llvm/include/llvm-c/Types.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm-c/lto.h
  stable/12/contrib/llvm/include/llvm/ADT/APFloat.h
  stable/12/contrib/llvm/include/llvm/ADT/APInt.h
  stable/12/contrib/llvm/include/llvm/ADT/APSInt.h
  stable/12/contrib/llvm/include/llvm/ADT/ArrayRef.h
  stable/12/contrib/llvm/include/llvm/ADT/BitVector.h
  stable/12/contrib/llvm/include/llvm/ADT/CachedHashString.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
  stable/12/contrib/llvm/include/llvm/ADT/DenseSet.h
  stable/12/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
  stable/12/contrib/llvm/include/llvm/ADT/EpochTracker.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ADT/GraphTraits.h
  stable/12/contrib/llvm/include/llvm/ADT/Hashing.h
  stable/12/contrib/llvm/include/llvm/ADT/ImmutableList.h
  stable/12/contrib/llvm/include/llvm/ADT/ImmutableMap.h
  stable/12/contrib/llvm/include/llvm/ADT/ImmutableSet.h
  stable/12/contrib/llvm/include/llvm/ADT/MapVector.h
  stable/12/contrib/llvm/include/llvm/ADT/None.h
  stable/12/contrib/llvm/include/llvm/ADT/Optional.h
  stable/12/contrib/llvm/include/llvm/ADT/PackedVector.h
  stable/12/contrib/llvm/include/llvm/ADT/PointerUnion.h
  stable/12/contrib/llvm/include/llvm/ADT/SCCIterator.h
  stable/12/contrib/llvm/include/llvm/ADT/STLExtras.h
  stable/12/contrib/llvm/include/llvm/ADT/ScopeExit.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ADT/SetVector.h
  stable/12/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
  stable/12/contrib/llvm/include/llvm/ADT/SmallSet.h
  stable/12/contrib/llvm/include/llvm/ADT/SmallVector.h
  stable/12/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
  stable/12/contrib/llvm/include/llvm/ADT/SparseSet.h
  stable/12/contrib/llvm/include/llvm/ADT/Statistic.h
  stable/12/contrib/llvm/include/llvm/ADT/StringExtras.h
  stable/12/contrib/llvm/include/llvm/ADT/StringMap.h
  stable/12/contrib/llvm/include/llvm/ADT/StringRef.h
  stable/12/contrib/llvm/include/llvm/ADT/StringSwitch.h
  stable/12/contrib/llvm/include/llvm/ADT/TinyPtrVector.h
  stable/12/contrib/llvm/include/llvm/ADT/Triple.h
  stable/12/contrib/llvm/include/llvm/ADT/UniqueVector.h
  stable/12/contrib/llvm/include/llvm/ADT/VariadicFunction.h
  stable/12/contrib/llvm/include/llvm/ADT/edit_distance.h
  stable/12/contrib/llvm/include/llvm/ADT/ilist.h
  stable/12/contrib/llvm/include/llvm/ADT/ilist_node.h
  stable/12/contrib/llvm/include/llvm/ADT/ilist_node_options.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ADT/iterator.h
  stable/12/contrib/llvm/include/llvm/ADT/iterator_range.h
  stable/12/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
  stable/12/contrib/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
  stable/12/contrib/llvm/include/llvm/Analysis/AssumptionCache.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
  stable/12/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
  stable/12/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
  stable/12/contrib/llvm/include/llvm/Analysis/CFG.h
  stable/12/contrib/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
  stable/12/contrib/llvm/include/llvm/Analysis/CallGraph.h
  stable/12/contrib/llvm/include/llvm/Analysis/CaptureTracking.h
  stable/12/contrib/llvm/include/llvm/Analysis/CodeMetrics.h
  stable/12/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
  stable/12/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
  stable/12/contrib/llvm/include/llvm/Analysis/DemandedBits.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
  stable/12/contrib/llvm/include/llvm/Analysis/DivergenceAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
  stable/12/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
  stable/12/contrib/llvm/include/llvm/Analysis/EHPersonalities.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/InlineCost.h
  stable/12/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
  stable/12/contrib/llvm/include/llvm/Analysis/Lint.h
  stable/12/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/LoopAnalysisManager.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/LoopInfo.h
  stable/12/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
  stable/12/contrib/llvm/include/llvm/Analysis/LoopIterator.h
  stable/12/contrib/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
  stable/12/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
  stable/12/contrib/llvm/include/llvm/Analysis/MemoryLocation.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/MemorySSA.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/OrderedBasicBlock.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/PHITransAddr.h
  stable/12/contrib/llvm/include/llvm/Analysis/Passes.h
  stable/12/contrib/llvm/include/llvm/Analysis/PostDominators.h
  stable/12/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h
  stable/12/contrib/llvm/include/llvm/Analysis/RegionInfo.h
  stable/12/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
  stable/12/contrib/llvm/include/llvm/Analysis/RegionIterator.h
  stable/12/contrib/llvm/include/llvm/Analysis/RegionPass.h
  stable/12/contrib/llvm/include/llvm/Analysis/RegionPrinter.h
  stable/12/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
  stable/12/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
  stable/12/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
  stable/12/contrib/llvm/include/llvm/Analysis/SparsePropagation.h
  stable/12/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
  stable/12/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
  stable/12/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ValueLattice.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ValueTracking.h
  stable/12/contrib/llvm/include/llvm/Analysis/VectorUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/AsmParser/Parser.h
  stable/12/contrib/llvm/include/llvm/BinaryFormat/COFF.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/BinaryFormat/Dwarf.def
  stable/12/contrib/llvm/include/llvm/BinaryFormat/Dwarf.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/BinaryFormat/ELF.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
  stable/12/contrib/llvm/include/llvm/BinaryFormat/MachO.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/BinaryFormat/Magic.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/BinaryFormat/Wasm.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs.def
  stable/12/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
  stable/12/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
  stable/12/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
  stable/12/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
  stable/12/contrib/llvm/include/llvm/CodeGen/Analysis.h
  stable/12/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
  stable/12/contrib/llvm/include/llvm/CodeGen/AtomicExpandUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h
  stable/12/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
  stable/12/contrib/llvm/include/llvm/CodeGen/CostTable.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/DIE.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/FastISel.h
  stable/12/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveIntervals.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MIRPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MachORelocation.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineDominators.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
  stable/12/contrib/llvm/include/llvm/CodeGen/MacroFusion.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
  stable/12/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
  stable/12/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
  stable/12/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
  stable/12/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/ParallelCG.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/Passes.h
  stable/12/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
  stable/12/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
  stable/12/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
  stable/12/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
  stable/12/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
  stable/12/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
  stable/12/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
  stable/12/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h
  stable/12/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
  stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
  stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
  stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
  stable/12/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
  stable/12/contrib/llvm/include/llvm/CodeGen/StackMaps.h
  stable/12/contrib/llvm/include/llvm/CodeGen/StackProtector.h
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetCallingConv.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetFrameLowering.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetLowering.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetOpcodes.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetRegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
  stable/12/contrib/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
  stable/12/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
  stable/12/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeHashing.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DIContext.h
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawConstants.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Demangle/Demangle.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
  stable/12/contrib/llvm/include/llvm/FuzzMutate/FuzzerCLI.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/FuzzMutate/OpDescriptor.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/Attributes.h
  stable/12/contrib/llvm/include/llvm/IR/Attributes.td
  stable/12/contrib/llvm/include/llvm/IR/AutoUpgrade.h
  stable/12/contrib/llvm/include/llvm/IR/BasicBlock.h
  stable/12/contrib/llvm/include/llvm/IR/CFG.h
  stable/12/contrib/llvm/include/llvm/IR/CallSite.h
  stable/12/contrib/llvm/include/llvm/IR/CallingConv.h
  stable/12/contrib/llvm/include/llvm/IR/Comdat.h
  stable/12/contrib/llvm/include/llvm/IR/Constant.h
  stable/12/contrib/llvm/include/llvm/IR/ConstantRange.h
  stable/12/contrib/llvm/include/llvm/IR/Constants.h
  stable/12/contrib/llvm/include/llvm/IR/DIBuilder.h
  stable/12/contrib/llvm/include/llvm/IR/DataLayout.h
  stable/12/contrib/llvm/include/llvm/IR/DebugInfo.h
  stable/12/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
  stable/12/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/DebugLoc.h
  stable/12/contrib/llvm/include/llvm/IR/DerivedTypes.h
  stable/12/contrib/llvm/include/llvm/IR/DiagnosticHandler.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
  stable/12/contrib/llvm/include/llvm/IR/DiagnosticPrinter.h
  stable/12/contrib/llvm/include/llvm/IR/Dominators.h
  stable/12/contrib/llvm/include/llvm/IR/Function.h
  stable/12/contrib/llvm/include/llvm/IR/GlobalObject.h
  stable/12/contrib/llvm/include/llvm/IR/GlobalValue.h
  stable/12/contrib/llvm/include/llvm/IR/GlobalVariable.h
  stable/12/contrib/llvm/include/llvm/IR/IRBuilder.h
  stable/12/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
  stable/12/contrib/llvm/include/llvm/IR/InstVisitor.h
  stable/12/contrib/llvm/include/llvm/IR/InstrTypes.h
  stable/12/contrib/llvm/include/llvm/IR/Instruction.h
  stable/12/contrib/llvm/include/llvm/IR/Instructions.h
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicInst.h
  stable/12/contrib/llvm/include/llvm/IR/Intrinsics.h
  stable/12/contrib/llvm/include/llvm/IR/Intrinsics.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsARM.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
  stable/12/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
  stable/12/contrib/llvm/include/llvm/IR/LLVMContext.h
  stable/12/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
  stable/12/contrib/llvm/include/llvm/IR/MDBuilder.h
  stable/12/contrib/llvm/include/llvm/IR/Mangler.h
  stable/12/contrib/llvm/include/llvm/IR/Metadata.def
  stable/12/contrib/llvm/include/llvm/IR/Metadata.h
  stable/12/contrib/llvm/include/llvm/IR/Module.h
  stable/12/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/Operator.h
  stable/12/contrib/llvm/include/llvm/IR/OptBisect.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/PassManager.h
  stable/12/contrib/llvm/include/llvm/IR/PassManagerInternal.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/PatternMatch.h
  stable/12/contrib/llvm/include/llvm/IR/ProfileSummary.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/Statepoint.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/TrackingMDRef.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/Type.h
  stable/12/contrib/llvm/include/llvm/IR/Use.h
  stable/12/contrib/llvm/include/llvm/IR/UseListOrder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/IR/User.h
  stable/12/contrib/llvm/include/llvm/IR/Value.h
  stable/12/contrib/llvm/include/llvm/IR/ValueHandle.h
  stable/12/contrib/llvm/include/llvm/IR/ValueMap.h
  stable/12/contrib/llvm/include/llvm/IR/ValueSymbolTable.h
  stable/12/contrib/llvm/include/llvm/IR/Verifier.h
  stable/12/contrib/llvm/include/llvm/IRReader/IRReader.h
  stable/12/contrib/llvm/include/llvm/InitializePasses.h
  stable/12/contrib/llvm/include/llvm/LTO/Caching.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/LTO/Config.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/LTO/LTO.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/LinkAllIR.h
  stable/12/contrib/llvm/include/llvm/LinkAllPasses.h
  stable/12/contrib/llvm/include/llvm/Linker/Linker.h
  stable/12/contrib/llvm/include/llvm/MC/MCAsmBackend.h
  stable/12/contrib/llvm/include/llvm/MC/MCAsmInfo.h
  stable/12/contrib/llvm/include/llvm/MC/MCAsmLayout.h
  stable/12/contrib/llvm/include/llvm/MC/MCAsmMacro.h
  stable/12/contrib/llvm/include/llvm/MC/MCAssembler.h
  stable/12/contrib/llvm/include/llvm/MC/MCCodePadder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCCodeView.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCContext.h
  stable/12/contrib/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCDwarf.h
  stable/12/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
  stable/12/contrib/llvm/include/llvm/MC/MCELFStreamer.h
  stable/12/contrib/llvm/include/llvm/MC/MCExpr.h
  stable/12/contrib/llvm/include/llvm/MC/MCFixup.h
  stable/12/contrib/llvm/include/llvm/MC/MCFixupKindInfo.h
  stable/12/contrib/llvm/include/llvm/MC/MCFragment.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCInst.h
  stable/12/contrib/llvm/include/llvm/MC/MCInstBuilder.h
  stable/12/contrib/llvm/include/llvm/MC/MCInstPrinter.h
  stable/12/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
  stable/12/contrib/llvm/include/llvm/MC/MCInstrDesc.h
  stable/12/contrib/llvm/include/llvm/MC/MCInstrInfo.h
  stable/12/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
  stable/12/contrib/llvm/include/llvm/MC/MCLabel.h
  stable/12/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h
  stable/12/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
  stable/12/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
  stable/12/contrib/llvm/include/llvm/MC/MCObjectWriter.h
  stable/12/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
  stable/12/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
  stable/12/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
  stable/12/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
  stable/12/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
  stable/12/contrib/llvm/include/llvm/MC/MCSchedule.h
  stable/12/contrib/llvm/include/llvm/MC/MCSection.h
  stable/12/contrib/llvm/include/llvm/MC/MCSectionWasm.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCStreamer.h
  stable/12/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
  stable/12/contrib/llvm/include/llvm/MC/MCSymbol.h
  stable/12/contrib/llvm/include/llvm/MC/MCSymbolMachO.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCSymbolWasm.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCTargetOptions.h
  stable/12/contrib/llvm/include/llvm/MC/MCValue.h
  stable/12/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCWasmStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
  stable/12/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h
  stable/12/contrib/llvm/include/llvm/MC/StringTableBuilder.h
  stable/12/contrib/llvm/include/llvm/Object/Archive.h
  stable/12/contrib/llvm/include/llvm/Object/Binary.h
  stable/12/contrib/llvm/include/llvm/Object/COFF.h
  stable/12/contrib/llvm/include/llvm/Object/COFFImportFile.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Object/Decompressor.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Object/ELF.h
  stable/12/contrib/llvm/include/llvm/Object/ELFObjectFile.h
  stable/12/contrib/llvm/include/llvm/Object/ELFTypes.h
  stable/12/contrib/llvm/include/llvm/Object/IRObjectFile.h
  stable/12/contrib/llvm/include/llvm/Object/MachO.h
  stable/12/contrib/llvm/include/llvm/Object/MachOUniversal.h
  stable/12/contrib/llvm/include/llvm/Object/ModuleSymbolTable.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Object/ObjectFile.h
  stable/12/contrib/llvm/include/llvm/Object/RelocVisitor.h
  stable/12/contrib/llvm/include/llvm/Object/Wasm.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/DWARFEmitter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/MachOYAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/YAML.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Option/Arg.h
  stable/12/contrib/llvm/include/llvm/Option/ArgList.h
  stable/12/contrib/llvm/include/llvm/Option/OptTable.h
  stable/12/contrib/llvm/include/llvm/Option/Option.h
  stable/12/contrib/llvm/include/llvm/Pass.h
  stable/12/contrib/llvm/include/llvm/PassAnalysisSupport.h
  stable/12/contrib/llvm/include/llvm/PassRegistry.h
  stable/12/contrib/llvm/include/llvm/Passes/PassBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/GCOV.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/InstrProf.h
  stable/12/contrib/llvm/include/llvm/ProfileData/InstrProfData.inc   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
  stable/12/contrib/llvm/include/llvm/ProfileData/ProfileCommon.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/SampleProf.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
  stable/12/contrib/llvm/include/llvm/Support/AMDGPUMetadata.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/ARMTargetParser.def
  stable/12/contrib/llvm/include/llvm/Support/AlignOf.h
  stable/12/contrib/llvm/include/llvm/Support/Allocator.h
  stable/12/contrib/llvm/include/llvm/Support/AtomicOrdering.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryByteStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryStream.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryStreamArray.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryStreamReader.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryStreamRef.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/BlockFrequency.h
  stable/12/contrib/llvm/include/llvm/Support/BranchProbability.h
  stable/12/contrib/llvm/include/llvm/Support/CachePruning.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Casting.h
  stable/12/contrib/llvm/include/llvm/Support/CodeGenCoverage.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/CommandLine.h
  stable/12/contrib/llvm/include/llvm/Support/Compiler.h
  stable/12/contrib/llvm/include/llvm/Support/ConvertUTF.h
  stable/12/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h
  stable/12/contrib/llvm/include/llvm/Support/DataExtractor.h
  stable/12/contrib/llvm/include/llvm/Support/Debug.h
  stable/12/contrib/llvm/include/llvm/Support/DebugCounter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/DynamicLibrary.h
  stable/12/contrib/llvm/include/llvm/Support/Endian.h
  stable/12/contrib/llvm/include/llvm/Support/EndianStream.h
  stable/12/contrib/llvm/include/llvm/Support/Errc.h
  stable/12/contrib/llvm/include/llvm/Support/Errno.h
  stable/12/contrib/llvm/include/llvm/Support/Error.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/ErrorHandling.h
  stable/12/contrib/llvm/include/llvm/Support/ErrorOr.h
  stable/12/contrib/llvm/include/llvm/Support/FileOutputBuffer.h
  stable/12/contrib/llvm/include/llvm/Support/FileSystem.h
  stable/12/contrib/llvm/include/llvm/Support/FormatAdapters.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/FormatVariadic.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/FormatVariadicDetails.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/GenericDomTree.h
  stable/12/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
  stable/12/contrib/llvm/include/llvm/Support/GraphWriter.h
  stable/12/contrib/llvm/include/llvm/Support/Host.h
  stable/12/contrib/llvm/include/llvm/Support/JamCRC.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/KnownBits.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/LEB128.h
  stable/12/contrib/llvm/include/llvm/Support/LineIterator.h
  stable/12/contrib/llvm/include/llvm/Support/LockFileManager.h
  stable/12/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/MD5.h
  stable/12/contrib/llvm/include/llvm/Support/MathExtras.h
  stable/12/contrib/llvm/include/llvm/Support/Memory.h
  stable/12/contrib/llvm/include/llvm/Support/MemoryBuffer.h
  stable/12/contrib/llvm/include/llvm/Support/MipsABIFlags.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Mutex.h
  stable/12/contrib/llvm/include/llvm/Support/MutexGuard.h
  stable/12/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
  stable/12/contrib/llvm/include/llvm/Support/Options.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Parallel.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Path.h
  stable/12/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
  stable/12/contrib/llvm/include/llvm/Support/Process.h
  stable/12/contrib/llvm/include/llvm/Support/Program.h
  stable/12/contrib/llvm/include/llvm/Support/RWMutex.h
  stable/12/contrib/llvm/include/llvm/Support/Regex.h
  stable/12/contrib/llvm/include/llvm/Support/SMLoc.h
  stable/12/contrib/llvm/include/llvm/Support/SaveAndRestore.h
  stable/12/contrib/llvm/include/llvm/Support/ScaledNumber.h
  stable/12/contrib/llvm/include/llvm/Support/ScopedPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Signals.h
  stable/12/contrib/llvm/include/llvm/Support/SourceMgr.h
  stable/12/contrib/llvm/include/llvm/Support/StringSaver.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/SystemUtils.h
  stable/12/contrib/llvm/include/llvm/Support/TargetParser.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/TargetRegistry.h
  stable/12/contrib/llvm/include/llvm/Support/ThreadLocal.h
  stable/12/contrib/llvm/include/llvm/Support/ThreadPool.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Threading.h
  stable/12/contrib/llvm/include/llvm/Support/Timer.h
  stable/12/contrib/llvm/include/llvm/Support/ToolOutputFile.h
  stable/12/contrib/llvm/include/llvm/Support/TrailingObjects.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Unicode.h
  stable/12/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
  stable/12/contrib/llvm/include/llvm/Support/UniqueLock.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Support/Win64EH.h
  stable/12/contrib/llvm/include/llvm/Support/X86TargetParser.def
  stable/12/contrib/llvm/include/llvm/Support/YAMLParser.h
  stable/12/contrib/llvm/include/llvm/Support/YAMLTraits.h
  stable/12/contrib/llvm/include/llvm/Support/raw_ostream.h
  stable/12/contrib/llvm/include/llvm/Support/type_traits.h
  stable/12/contrib/llvm/include/llvm/Support/xxhash.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/TableGen/Record.h
  stable/12/contrib/llvm/include/llvm/TableGen/SearchableTable.td
  stable/12/contrib/llvm/include/llvm/Target/GenericOpcodes.td
  stable/12/contrib/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
  stable/12/contrib/llvm/include/llvm/Target/GlobalISel/Target.td
  stable/12/contrib/llvm/include/llvm/Target/Target.td
  stable/12/contrib/llvm/include/llvm/Target/TargetCallingConv.td
  stable/12/contrib/llvm/include/llvm/Target/TargetItinerary.td
  stable/12/contrib/llvm/include/llvm/Target/TargetMachine.h
  stable/12/contrib/llvm/include/llvm/Target/TargetOptions.h
  stable/12/contrib/llvm/include/llvm/Target/TargetSchedule.td
  stable/12/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
  stable/12/contrib/llvm/include/llvm/Testing/Support/Error.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Testing/Support/SupportHelpers.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO.h
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/FunctionImport.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation.h
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar.h
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/GVNExpression.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/NewGVN.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SROA.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/Evaluator.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/Local.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
  stable/12/contrib/llvm/include/llvm/Transforms/Vectorize.h
  stable/12/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/XRay/XRayRecord.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/XRay/YAMLXRayRecord.h   (contents, props changed)
  stable/12/contrib/llvm/include/llvm/module.modulemap
  stable/12/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
  stable/12/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
  stable/12/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
  stable/12/contrib/llvm/lib/Analysis/Analysis.cpp
  stable/12/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
  stable/12/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
  stable/12/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
  stable/12/contrib/llvm/lib/Analysis/CFGPrinter.cpp
  stable/12/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/CFLGraph.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
  stable/12/contrib/llvm/lib/Analysis/CallGraph.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/CaptureTracking.cpp
  stable/12/contrib/llvm/lib/Analysis/CodeMetrics.cpp
  stable/12/contrib/llvm/lib/Analysis/ConstantFolding.cpp
  stable/12/contrib/llvm/lib/Analysis/Delinearization.cpp
  stable/12/contrib/llvm/lib/Analysis/DemandedBits.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
  stable/12/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
  stable/12/contrib/llvm/lib/Analysis/EHPersonalities.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/GlobalsModRef.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/IVUsers.cpp
  stable/12/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/InlineCost.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
  stable/12/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/LazyCallGraph.cpp
  stable/12/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
  stable/12/contrib/llvm/lib/Analysis/Lint.cpp
  stable/12/contrib/llvm/lib/Analysis/Loads.cpp
  stable/12/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/LoopAnalysisManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/LoopInfo.cpp
  stable/12/contrib/llvm/lib/Analysis/LoopPass.cpp
  stable/12/contrib/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/MemDepPrinter.cpp
  stable/12/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
  stable/12/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
  stable/12/contrib/llvm/lib/Analysis/MemoryLocation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/MemorySSA.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/PHITransAddr.cpp
  stable/12/contrib/llvm/lib/Analysis/PostDominators.cpp
  stable/12/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/RegionInfo.cpp
  stable/12/contrib/llvm/lib/Analysis/RegionPass.cpp
  stable/12/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
  stable/12/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
  stable/12/contrib/llvm/lib/Analysis/StratifiedSets.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
  stable/12/contrib/llvm/lib/Analysis/Trace.cpp
  stable/12/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
  stable/12/contrib/llvm/lib/Analysis/ValueTracking.cpp
  stable/12/contrib/llvm/lib/Analysis/VectorUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/AsmParser/LLLexer.cpp
  stable/12/contrib/llvm/lib/AsmParser/LLLexer.h
  stable/12/contrib/llvm/lib/AsmParser/LLParser.cpp
  stable/12/contrib/llvm/lib/AsmParser/LLParser.h
  stable/12/contrib/llvm/lib/AsmParser/LLToken.h
  stable/12/contrib/llvm/lib/AsmParser/Parser.cpp
  stable/12/contrib/llvm/lib/BinaryFormat/Dwarf.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/BinaryFormat/Magic.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
  stable/12/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp
  stable/12/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
  stable/12/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
  stable/12/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
  stable/12/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
  stable/12/contrib/llvm/lib/CodeGen/AllocationOrder.cpp
  stable/12/contrib/llvm/lib/CodeGen/Analysis.cpp
  stable/12/contrib/llvm/lib/CodeGen/AntiDepBreaker.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/BranchFolding.cpp
  stable/12/contrib/llvm/lib/CodeGen/BranchFolding.h
  stable/12/contrib/llvm/lib/CodeGen/BranchRelaxation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
  stable/12/contrib/llvm/lib/CodeGen/CodeGen.cpp
  stable/12/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
  stable/12/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
  stable/12/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
  stable/12/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
  stable/12/contrib/llvm/lib/CodeGen/DetectDeadLanes.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
  stable/12/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
  stable/12/contrib/llvm/lib/CodeGen/ExpandMemCmp.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
  stable/12/contrib/llvm/lib/CodeGen/ExpandReductions.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/FaultMaps.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/FuncletLayout.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GCMetadata.cpp
  stable/12/contrib/llvm/lib/CodeGen/GCRootLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Localizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Utils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalMerge.cpp
  stable/12/contrib/llvm/lib/CodeGen/IfConversion.cpp
  stable/12/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/InlineSpiller.cpp
  stable/12/contrib/llvm/lib/CodeGen/InterferenceCache.cpp
  stable/12/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
  stable/12/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
  stable/12/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
  stable/12/contrib/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/LexicalScopes.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveInterval.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveIntervals.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
  stable/12/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveRangeShrink.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
  stable/12/contrib/llvm/lib/CodeGen/LiveRegUnits.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/LiveVariables.cpp
  stable/12/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
  stable/12/contrib/llvm/lib/CodeGen/LowerEmuTLS.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRParser/MIParser.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineCSE.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineCombiner.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineDominators.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineFrameInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachineFunction.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineInstr.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineLICM.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineOperand.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachineOutliner.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/MachineRegionInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineSink.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
  stable/12/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
  stable/12/contrib/llvm/lib/CodeGen/MacroFusion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
  stable/12/contrib/llvm/lib/CodeGen/PHIElimination.cpp
  stable/12/contrib/llvm/lib/CodeGen/ParallelCG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/PatchableFunction.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
  stable/12/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
  stable/12/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
  stable/12/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
  stable/12/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/RenameIndependentSubregs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SafeStack.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SafeStackLayout.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SafeStackLayout.h   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
  stable/12/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
  stable/12/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
  stable/12/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
  stable/12/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
  stable/12/contrib/llvm/lib/CodeGen/SlotIndexes.cpp
  stable/12/contrib/llvm/lib/CodeGen/SpillPlacement.cpp
  stable/12/contrib/llvm/lib/CodeGen/SplitKit.cpp
  stable/12/contrib/llvm/lib/CodeGen/SplitKit.h
  stable/12/contrib/llvm/lib/CodeGen/StackColoring.cpp
  stable/12/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
  stable/12/contrib/llvm/lib/CodeGen/StackMaps.cpp
  stable/12/contrib/llvm/lib/CodeGen/StackProtector.cpp
  stable/12/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
  stable/12/contrib/llvm/lib/CodeGen/TailDuplication.cpp
  stable/12/contrib/llvm/lib/CodeGen/TailDuplicator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
  stable/12/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
  stable/12/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  stable/12/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
  stable/12/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
  stable/12/contrib/llvm/lib/CodeGen/TargetSubtargetInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
  stable/12/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
  stable/12/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/CodeGen/XRayInstrumentation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/GlobalTypeTableBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/RecordName.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/MSF/MSFCommon.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/HashTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NamedStreamMap.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PDBStringTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
  stable/12/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
  stable/12/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
  stable/12/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
  stable/12/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
  stable/12/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcError.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
  stable/12/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
  stable/12/contrib/llvm/lib/FuzzMutate/FuzzerCLI.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/FuzzMutate/IRMutator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/AsmWriter.cpp
  stable/12/contrib/llvm/lib/IR/AttributeImpl.h
  stable/12/contrib/llvm/lib/IR/Attributes.cpp
  stable/12/contrib/llvm/lib/IR/AutoUpgrade.cpp
  stable/12/contrib/llvm/lib/IR/BasicBlock.cpp
  stable/12/contrib/llvm/lib/IR/Comdat.cpp
  stable/12/contrib/llvm/lib/IR/ConstantFold.cpp
  stable/12/contrib/llvm/lib/IR/ConstantRange.cpp
  stable/12/contrib/llvm/lib/IR/Constants.cpp
  stable/12/contrib/llvm/lib/IR/ConstantsContext.h
  stable/12/contrib/llvm/lib/IR/Core.cpp
  stable/12/contrib/llvm/lib/IR/DIBuilder.cpp
  stable/12/contrib/llvm/lib/IR/DataLayout.cpp
  stable/12/contrib/llvm/lib/IR/DebugInfo.cpp
  stable/12/contrib/llvm/lib/IR/DebugInfoMetadata.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/DebugLoc.cpp
  stable/12/contrib/llvm/lib/IR/DiagnosticHandler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/DiagnosticInfo.cpp
  stable/12/contrib/llvm/lib/IR/Dominators.cpp
  stable/12/contrib/llvm/lib/IR/Function.cpp
  stable/12/contrib/llvm/lib/IR/Globals.cpp
  stable/12/contrib/llvm/lib/IR/IRBuilder.cpp
  stable/12/contrib/llvm/lib/IR/IRPrintingPasses.cpp
  stable/12/contrib/llvm/lib/IR/InlineAsm.cpp
  stable/12/contrib/llvm/lib/IR/Instruction.cpp
  stable/12/contrib/llvm/lib/IR/Instructions.cpp
  stable/12/contrib/llvm/lib/IR/IntrinsicInst.cpp
  stable/12/contrib/llvm/lib/IR/LLVMContext.cpp
  stable/12/contrib/llvm/lib/IR/LLVMContextImpl.cpp
  stable/12/contrib/llvm/lib/IR/LLVMContextImpl.h
  stable/12/contrib/llvm/lib/IR/LegacyPassManager.cpp
  stable/12/contrib/llvm/lib/IR/MDBuilder.cpp
  stable/12/contrib/llvm/lib/IR/Mangler.cpp
  stable/12/contrib/llvm/lib/IR/Metadata.cpp
  stable/12/contrib/llvm/lib/IR/Module.cpp
  stable/12/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/Operator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/OptBisect.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/Pass.cpp
  stable/12/contrib/llvm/lib/IR/ProfileSummary.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/SafepointIRVerifier.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h
  stable/12/contrib/llvm/lib/IR/Type.cpp
  stable/12/contrib/llvm/lib/IR/TypeFinder.cpp
  stable/12/contrib/llvm/lib/IR/Value.cpp
  stable/12/contrib/llvm/lib/IR/ValueSymbolTable.cpp
  stable/12/contrib/llvm/lib/IR/Verifier.cpp
  stable/12/contrib/llvm/lib/IRReader/IRReader.cpp
  stable/12/contrib/llvm/lib/LTO/Caching.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/LTO/LTO.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/LTO/LTOBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp
  stable/12/contrib/llvm/lib/LTO/LTOModule.cpp
  stable/12/contrib/llvm/lib/LTO/ThinLTOCodeGenerator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Linker/IRMover.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/ELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/MC/MCAsmBackend.cpp
  stable/12/contrib/llvm/lib/MC/MCAsmInfo.cpp
  stable/12/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
  stable/12/contrib/llvm/lib/MC/MCAsmStreamer.cpp
  stable/12/contrib/llvm/lib/MC/MCAssembler.cpp
  stable/12/contrib/llvm/lib/MC/MCCodeView.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/MCContext.cpp
  stable/12/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
  stable/12/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
  stable/12/contrib/llvm/lib/MC/MCDwarf.cpp
  stable/12/contrib/llvm/lib/MC/MCELFStreamer.cpp
  stable/12/contrib/llvm/lib/MC/MCExpr.cpp
  stable/12/contrib/llvm/lib/MC/MCFragment.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/MCInst.cpp
  stable/12/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
  stable/12/contrib/llvm/lib/MC/MCLabel.cpp
  stable/12/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
  stable/12/contrib/llvm/lib/MC/MCMachOStreamer.cpp
  stable/12/contrib/llvm/lib/MC/MCNullStreamer.cpp
  stable/12/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
  stable/12/contrib/llvm/lib/MC/MCObjectStreamer.cpp
  stable/12/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
  stable/12/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
  stable/12/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
  stable/12/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
  stable/12/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
  stable/12/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
  stable/12/contrib/llvm/lib/MC/MCSchedule.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/MCSection.cpp
  stable/12/contrib/llvm/lib/MC/MCSectionCOFF.cpp
  stable/12/contrib/llvm/lib/MC/MCSectionELF.cpp
  stable/12/contrib/llvm/lib/MC/MCStreamer.cpp
  stable/12/contrib/llvm/lib/MC/MCSubtargetInfo.cpp
  stable/12/contrib/llvm/lib/MC/MCSymbol.cpp
  stable/12/contrib/llvm/lib/MC/MCValue.cpp
  stable/12/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/MCWasmStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/MachObjectWriter.cpp
  stable/12/contrib/llvm/lib/MC/StringTableBuilder.cpp
  stable/12/contrib/llvm/lib/MC/SubtargetFeature.cpp
  stable/12/contrib/llvm/lib/MC/WasmObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Object/Archive.cpp
  stable/12/contrib/llvm/lib/Object/ArchiveWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/Binary.cpp
  stable/12/contrib/llvm/lib/Object/COFFImportFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/COFFModuleDefinition.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/COFFObjectFile.cpp
  stable/12/contrib/llvm/lib/Object/ELF.cpp
  stable/12/contrib/llvm/lib/Object/ELFObjectFile.cpp
  stable/12/contrib/llvm/lib/Object/IRSymtab.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/MachOObjectFile.cpp
  stable/12/contrib/llvm/lib/Object/ModuleSymbolTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/Object.cpp
  stable/12/contrib/llvm/lib/Object/ObjectFile.cpp
  stable/12/contrib/llvm/lib/Object/RecordStreamer.cpp
  stable/12/contrib/llvm/lib/Object/RecordStreamer.h
  stable/12/contrib/llvm/lib/Object/SymbolSize.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/SymbolicFile.cpp
  stable/12/contrib/llvm/lib/Object/WasmObjectFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Object/WindowsResource.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/COFFYAML.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypeHashing.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/DWARFEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/DWARFVisitor.h   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Option/Arg.cpp
  stable/12/contrib/llvm/lib/Option/ArgList.cpp
  stable/12/contrib/llvm/lib/Option/OptTable.cpp
  stable/12/contrib/llvm/lib/Option/Option.cpp
  stable/12/contrib/llvm/lib/Passes/PassBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Passes/PassRegistry.def
  stable/12/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/GCOV.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/InstrProf.cpp
  stable/12/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
  stable/12/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
  stable/12/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/SampleProf.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/SampleProfReader.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/AMDGPUMetadata.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/APFloat.cpp
  stable/12/contrib/llvm/lib/Support/APInt.cpp
  stable/12/contrib/llvm/lib/Support/ARMAttributeParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/BinaryStreamRef.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/BranchProbability.cpp
  stable/12/contrib/llvm/lib/Support/COM.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/CachePruning.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/Chrono.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/CodeGenCoverage.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/CommandLine.cpp
  stable/12/contrib/llvm/lib/Support/ConvertUTF.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
  stable/12/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp
  stable/12/contrib/llvm/lib/Support/Debug.cpp
  stable/12/contrib/llvm/lib/Support/DebugCounter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/DynamicLibrary.cpp
  stable/12/contrib/llvm/lib/Support/Errno.cpp
  stable/12/contrib/llvm/lib/Support/Error.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/ErrorHandling.cpp
  stable/12/contrib/llvm/lib/Support/FileOutputBuffer.cpp
  stable/12/contrib/llvm/lib/Support/FoldingSet.cpp
  stable/12/contrib/llvm/lib/Support/FormattedStream.cpp
  stable/12/contrib/llvm/lib/Support/GraphWriter.cpp
  stable/12/contrib/llvm/lib/Support/Host.cpp
  stable/12/contrib/llvm/lib/Support/Locale.cpp
  stable/12/contrib/llvm/lib/Support/LockFileManager.cpp
  stable/12/contrib/llvm/lib/Support/MD5.cpp
  stable/12/contrib/llvm/lib/Support/ManagedStatic.cpp
  stable/12/contrib/llvm/lib/Support/Memory.cpp
  stable/12/contrib/llvm/lib/Support/MemoryBuffer.cpp
  stable/12/contrib/llvm/lib/Support/Mutex.cpp
  stable/12/contrib/llvm/lib/Support/NativeFormatting.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/Parallel.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/Path.cpp
  stable/12/contrib/llvm/lib/Support/PrettyStackTrace.cpp
  stable/12/contrib/llvm/lib/Support/Process.cpp
  stable/12/contrib/llvm/lib/Support/Program.cpp
  stable/12/contrib/llvm/lib/Support/RWMutex.cpp
  stable/12/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
  stable/12/contrib/llvm/lib/Support/Regex.cpp
  stable/12/contrib/llvm/lib/Support/SHA1.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/Signals.cpp
  stable/12/contrib/llvm/lib/Support/SmallPtrSet.cpp
  stable/12/contrib/llvm/lib/Support/SmallVector.cpp
  stable/12/contrib/llvm/lib/Support/SourceMgr.cpp
  stable/12/contrib/llvm/lib/Support/Statistic.cpp
  stable/12/contrib/llvm/lib/Support/StringExtras.cpp
  stable/12/contrib/llvm/lib/Support/StringMap.cpp
  stable/12/contrib/llvm/lib/Support/StringPool.cpp
  stable/12/contrib/llvm/lib/Support/StringRef.cpp
  stable/12/contrib/llvm/lib/Support/StringSaver.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/TarWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/TargetParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/TargetRegistry.cpp
  stable/12/contrib/llvm/lib/Support/ThreadLocal.cpp
  stable/12/contrib/llvm/lib/Support/Threading.cpp
  stable/12/contrib/llvm/lib/Support/Timer.cpp
  stable/12/contrib/llvm/lib/Support/Triple.cpp
  stable/12/contrib/llvm/lib/Support/Twine.cpp
  stable/12/contrib/llvm/lib/Support/Unix/Host.inc
  stable/12/contrib/llvm/lib/Support/Unix/Memory.inc
  stable/12/contrib/llvm/lib/Support/Unix/Path.inc
  stable/12/contrib/llvm/lib/Support/Unix/Process.inc
  stable/12/contrib/llvm/lib/Support/Unix/Program.inc
  stable/12/contrib/llvm/lib/Support/Unix/Signals.inc
  stable/12/contrib/llvm/lib/Support/Unix/ThreadLocal.inc
  stable/12/contrib/llvm/lib/Support/Unix/Threading.inc   (contents, props changed)
  stable/12/contrib/llvm/lib/Support/Unix/Unix.h
  stable/12/contrib/llvm/lib/Support/Unix/Watchdog.inc
  stable/12/contrib/llvm/lib/Support/Watchdog.cpp
  stable/12/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
  stable/12/contrib/llvm/lib/Support/Windows/Host.inc
  stable/12/contrib/llvm/lib/Support/Windows/Path.inc
  stable/12/contrib/llvm/lib/Support/Windows/Process.inc
  stable/12/contrib/llvm/lib/Support/Windows/Program.inc
  stable/12/contrib/llvm/lib/Support/Windows/RWMutex.inc
  stable/12/contrib/llvm/lib/Support/Windows/Signals.inc
  stable/12/contrib/llvm/lib/Support/Windows/WindowsSupport.h
  stable/12/contrib/llvm/lib/Support/YAMLParser.cpp
  stable/12/contrib/llvm/lib/Support/YAMLTraits.cpp
  stable/12/contrib/llvm/lib/Support/circular_raw_ostream.cpp
  stable/12/contrib/llvm/lib/Support/raw_ostream.cpp
  stable/12/contrib/llvm/lib/Support/regcomp.c
  stable/12/contrib/llvm/lib/Support/regengine.inc
  stable/12/contrib/llvm/lib/Support/regex_impl.h
  stable/12/contrib/llvm/lib/Support/xxhash.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/TableGen/Error.cpp
  stable/12/contrib/llvm/lib/TableGen/Main.cpp
  stable/12/contrib/llvm/lib/TableGen/Record.cpp
  stable/12/contrib/llvm/lib/TableGen/StringMatcher.cpp
  stable/12/contrib/llvm/lib/TableGen/TGLexer.cpp
  stable/12/contrib/llvm/lib/TableGen/TGLexer.h
  stable/12/contrib/llvm/lib/TableGen/TGParser.cpp
  stable/12/contrib/llvm/lib/TableGen/TGParser.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedA53.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedKryo.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64SystemOperands.td
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/SVEInstrFormats.td
  stable/12/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
  stable/12/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPU.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPU.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLEnqueuedBlockLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNILPSched.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600Defines.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600InstrFormats.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600Instructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600Packetizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600Processors.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIDefines.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SISchedule.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/VOP1Instructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
  stable/12/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
  stable/12/contrib/llvm/lib/Target/ARC/ARCAsmPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCBranchFinalize.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCFrameLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCInstrFormats.td
  stable/12/contrib/llvm/lib/Target/ARC/ARCInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCInstrInfo.td
  stable/12/contrib/llvm/lib/Target/ARC/ARCMCInstLower.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCMCInstLower.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARM.h
  stable/12/contrib/llvm/lib/Target/ARM/ARM.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMCallLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMCallingConv.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMScheduleA57.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
  stable/12/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h
  stable/12/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
  stable/12/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
  stable/12/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp
  stable/12/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
  stable/12/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
  stable/12/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVR.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
  stable/12/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPF.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPF.td
  stable/12/contrib/llvm/lib/Target/BPF/BPFCallingConv.td
  stable/12/contrib/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFInstrInfo.td
  stable/12/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFSubtarget.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFSubtarget.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/BitTracker.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/Hexagon.h
  stable/12/contrib/llvm/lib/Target/Hexagon/Hexagon.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGatherPacketize.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGenMux.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV65.gen.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFCopy.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFLiveness.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
  stable/12/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
  stable/12/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
  stable/12/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
  stable/12/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
  stable/12/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Mips/Mips.h
  stable/12/contrib/llvm/lib/Target/Mips/Mips.td
  stable/12/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
  stable/12/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
  stable/12/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsCondMov.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsSchedule.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsScheduleP5600.td
  stable/12/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h
  stable/12/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
  stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
  stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTX.td
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2ELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2TargetStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2ISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrFormats.td
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.td
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
  stable/12/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPC.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPC.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCV.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCV.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVCallingConv.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrFormats.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVMCInstLower.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVSubtarget.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
  stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/Sparc/Sparc.h
  stable/12/contrib/llvm/lib/Target/Sparc/Sparc.td
  stable/12/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
  stable/12/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
  stable/12/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
  stable/12/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
  stable/12/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
  stable/12/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZ.h
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZ.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/Target.cpp
  stable/12/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
  stable/12/contrib/llvm/lib/Target/TargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/TargetMachineC.cpp
  stable/12/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/README.txt   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssembly.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
  stable/12/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h
  stable/12/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
  stable/12/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  stable/12/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
  stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
  stable/12/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
  stable/12/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
  stable/12/contrib/llvm/lib/Target/X86/X86.h
  stable/12/contrib/llvm/lib/Target/X86/X86.td
  stable/12/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
  stable/12/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86CallLowering.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86CallingConv.h
  stable/12/contrib/llvm/lib/Target/X86/X86CallingConv.td
  stable/12/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86DomainReassignment.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86EvexToVex.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86FastISel.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86FrameLowering.h
  stable/12/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86ISelLowering.h
  stable/12/contrib/llvm/lib/Target/X86/X86Instr3DNow.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrControl.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrExtension.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFMA.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFormats.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86InstrInfo.h
  stable/12/contrib/llvm/lib/Target/X86/X86InstrInfo.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrMMX.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrMPX.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrSGX.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrSSE.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrSVM.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrSystem.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrVMX.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrVecCompiler.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstrXOP.td
  stable/12/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
  stable/12/contrib/llvm/lib/Target/X86/X86RetpolineThunks.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86SchedBroadwell.td
  stable/12/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
  stable/12/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
  stable/12/contrib/llvm/lib/Target/X86/X86SchedSkylakeClient.td
  stable/12/contrib/llvm/lib/Target/X86/X86SchedSkylakeServer.td
  stable/12/contrib/llvm/lib/Target/X86/X86Schedule.td
  stable/12/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
  stable/12/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td
  stable/12/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td
  stable/12/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.td
  stable/12/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86Subtarget.h
  stable/12/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
  stable/12/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
  stable/12/contrib/llvm/lib/Target/X86/X86WinAllocaExpander.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86WinEHState.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
  stable/12/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
  stable/12/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h
  stable/12/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
  stable/12/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
  stable/12/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
  stable/12/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h
  stable/12/contrib/llvm/lib/Testing/Support/Error.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/ToolDrivers/llvm-lib/Options.td
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroEarly.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroInternal.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroSplit.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/Coroutines.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/FunctionImport.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/IPO.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/Internalize.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/LowerTypeTests.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
  stable/12/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  stable/12/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/GVNSink.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/MergeICmps.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
  stable/12/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/FunctionComparator.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/Local.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/Utils.cpp
  stable/12/contrib/llvm/lib/Transforms/Utils/VNCoercion.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlan.cpp   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlan.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h   (contents, props changed)
  stable/12/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
  stable/12/contrib/llvm/lib/XRay/Trace.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/bugpoint/BugDriver.cpp
  stable/12/contrib/llvm/tools/bugpoint/BugDriver.h
  stable/12/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
  stable/12/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
  stable/12/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
  stable/12/contrib/llvm/tools/bugpoint/FindBugs.cpp
  stable/12/contrib/llvm/tools/bugpoint/Miscompilation.cpp
  stable/12/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
  stable/12/contrib/llvm/tools/bugpoint/ToolRunner.cpp
  stable/12/contrib/llvm/tools/bugpoint/bugpoint.cpp
  stable/12/contrib/llvm/tools/clang/LICENSE.TXT
  stable/12/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h
  stable/12/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
  stable/12/contrib/llvm/tools/clang/include/clang-c/CXErrorCode.h
  stable/12/contrib/llvm/tools/clang/include/clang-c/CXString.h
  stable/12/contrib/llvm/tools/clang/include/clang-c/Documentation.h
  stable/12/contrib/llvm/tools/clang/include/clang-c/Index.h
  stable/12/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
  stable/12/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
  stable/12/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/APValue.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTLambda.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Attr.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Availability.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Comment.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DataCollection.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Decl.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Expr.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ExprOpenMP.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/LocInfoType.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.def
  stable/12/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/QualTypeNames.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/Type.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
  stable/12/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h
  stable/12/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
  stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CodeInjector.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/ABI.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticError.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Module.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/SyncScope.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Version.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
  stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
  stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Action.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Distro.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Job.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Options.td
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Tool.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Types.def
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/Types.h
  stable/12/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Edit/Commit.h
  stable/12/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
  stable/12/contrib/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
  stable/12/contrib/llvm/tools/clang/include/clang/Edit/FileOffset.h
  stable/12/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
  stable/12/contrib/llvm/tools/clang/include/clang/Format/Format.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
  stable/12/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/FrontendTool/Utils.h
  stable/12/contrib/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Index/IndexingAction.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/Token.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/VariadicMacroSupport.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h
  stable/12/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
  stable/12/contrib/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/LoopHint.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Scope.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Template.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/Weak.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstraintManager.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/AtomicChange.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRule.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringResultConsumer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolName.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFinder.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFindingAction.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRLocFinder.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/ToolExecutorPluginRegistry.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
  stable/12/contrib/llvm/tools/clang/include/clang/module.modulemap
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
  stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h
  stable/12/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/Comment.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/Decl.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/Expr.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/QualTypeNames.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/StmtObjC.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/StmtOpenMP.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/Type.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp
  stable/12/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
  stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
  stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
  stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
  stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
  stable/12/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
  stable/12/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Cuda.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Module.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Sanitizers.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/X86.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Version.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/Warnings.cpp
  stable/12/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGGPUBuiltin.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/ConstantEmitter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/Action.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/Distro.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/Job.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Contiki.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Lanai.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/Types.cpp
  stable/12/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Edit/Commit.cpp
  stable/12/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp
  stable/12/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/BreakableToken.h
  stable/12/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h
  stable/12/contrib/llvm/tools/clang/lib/Format/Encoding.h
  stable/12/contrib/llvm/tools/clang/lib/Format/Format.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/FormatInternal.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/FormatToken.h
  stable/12/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
  stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
  stable/12/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
  stable/12/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
  stable/12/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/altivec.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512bitalgintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlbitalgintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlvnniintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vnniintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/cetintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/clflushoptintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/clwbintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/clzerointrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/cpuid.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/algorithm
  stable/12/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/gfniintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/ia32intrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/immintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/intrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/lwpintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/module.modulemap
  stable/12/contrib/llvm/tools/clang/lib/Headers/mwaitxintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/nmmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/opencl-c.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/pkuintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/shaintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/stdint.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/unwind.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/vaesintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
  stable/12/contrib/llvm/tools/clang/lib/Headers/xsavecintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/xsaveintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/xsaveoptintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/xsavesintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexBody.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexDecl.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexSymbol.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexingAction.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/IndexingContext.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h
  stable/12/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
  stable/12/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
  stable/12/contrib/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp
  stable/12/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
  stable/12/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
  stable/12/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
  stable/12/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
  stable/12/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
  stable/12/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Execution.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
  stable/12/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
  stable/12/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
  stable/12/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
  stable/12/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
  stable/12/contrib/llvm/tools/clang/tools/driver/driver.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
  stable/12/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
  stable/12/contrib/llvm/tools/llc/llc.cpp
  stable/12/contrib/llvm/tools/lld/COFF/CMakeLists.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Chunks.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Chunks.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Config.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/DLL.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/DLL.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Driver.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Driver.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/DriverUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/ICF.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/InputFiles.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/InputFiles.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/LTO.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/LTO.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/MapFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/MarkLive.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/MinGW.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Options.td
  stable/12/contrib/llvm/tools/lld/COFF/PDB.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/PDB.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/SymbolTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/SymbolTable.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Symbols.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Symbols.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Writer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/COFF/Writer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/Common/Args.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/Common/CMakeLists.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/Common/ErrorHandler.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/Common/Strings.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/AArch64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/AMDGPU.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/ARM.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/Mips.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/MipsArchTree.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/PPC.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/PPC64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/SPARCV9.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/X86.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/X86_64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/CMakeLists.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Config.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Driver.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Driver.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/DriverUtils.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/EhFrame.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Filesystem.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/GdbIndex.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/GdbIndex.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/ICF.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/ICF.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/InputFiles.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/InputFiles.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/InputSection.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/InputSection.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/LTO.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/LTO.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/LinkerScript.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/LinkerScript.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/MapFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/MapFile.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/MarkLive.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Options.td
  stable/12/contrib/llvm/tools/lld/ELF/OutputSections.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/OutputSections.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Relocations.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Relocations.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/ScriptLexer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/ScriptParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/SymbolTable.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/SymbolTable.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Symbols.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Symbols.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/SyntheticSections.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Target.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Target.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Thunks.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Thunks.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Writer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Writer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/LICENSE.TXT   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Driver.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Strings.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Version.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/DefinedAtom.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/File.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Instrumentation.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/LinkingContext.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/PassManager.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Reader.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Resolver.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Simple.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/TODO.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Writer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/LinkingContext.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/Driver/CMakeLists.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/Driver/DarwinLdOptions.td
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lld/tools/lld/lld.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBData.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBSymbol.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointName.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ModuleChild.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/File.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Terminal.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/XML.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/GetOptInc.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/GoASTContext.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/JITLoader.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Language.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Queue.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-defines.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
  stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-versioning.h
  stable/12/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBBreakpointName.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBModule.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBModuleSpec.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBStream.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBThread.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBType.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SBValue.cpp
  stable/12/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Address.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Communication.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Event.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/FileLineResolver.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Core/Listener.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Module.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Opcode.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Section.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/Value.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
  stable/12/contrib/llvm/tools/lldb/source/Expression/REPL.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/File.cpp
  stable/12/contrib/llvm/tools/lldb/source/Host/common/Host.cpp
  stable/12/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
  stable/12/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/TaskPool.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp
  stable/12/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/XML.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp
  stable/12/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
  stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Block.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Type.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/TypeList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
  stable/12/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ABI.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/Memory.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/PathMappingList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/Platform.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/Process.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ProcessInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/StackID.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/Target.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/Thread.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
  stable/12/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/FastDemangle.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/JSON.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/Log.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/Status.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/Stream.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
  stable/12/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/UUID.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
  stable/12/contrib/llvm/tools/lldb/tools/driver/Driver.h
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/lli/RemoteJITUtils.h   (contents, props changed)
  stable/12/contrib/llvm/tools/lli/lli.cpp
  stable/12/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
  stable/12/contrib/llvm/tools/llvm-as/llvm-as.cpp
  stable/12/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
  stable/12/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageFilters.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageFilters.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageReport.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageReport.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/RenderingSupport.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageView.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/TestingSupport.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
  stable/12/contrib/llvm/tools/llvm-cxxdump/Error.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
  stable/12/contrib/llvm/tools/llvm-dis/llvm-dis.cpp
  stable/12/contrib/llvm/tools/llvm-dwarfdump/Statistics.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  stable/12/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
  stable/12/contrib/llvm/tools/llvm-link/llvm-link.cpp
  stable/12/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
  stable/12/contrib/llvm/tools/llvm-lto2/llvm-lto2.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
  stable/12/contrib/llvm/tools/llvm-modextract/llvm-modextract.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
  stable/12/contrib/llvm/tools/llvm-objcopy/Object.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-objcopy/Object.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
  stable/12/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
  stable/12/contrib/llvm/tools/llvm-objdump/MachODump.cpp
  stable/12/contrib/llvm/tools/llvm-objdump/WasmDump.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
  stable/12/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
  stable/12/contrib/llvm/tools/llvm-pdbutil/Analyze.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/InputFile.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/InputFile.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/StreamUtil.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/StreamUtil.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
  stable/12/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/COFFImportDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/ObjDumper.h
  stable/12/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
  stable/12/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
  stable/12/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
  stable/12/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
  stable/12/contrib/llvm/tools/llvm-xray/func-id-helper.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-xray/xray-account.h   (contents, props changed)
  stable/12/contrib/llvm/tools/llvm-xray/xray-graph.h   (contents, props changed)
  stable/12/contrib/llvm/tools/opt/BreakpointPrinter.cpp
  stable/12/contrib/llvm/tools/opt/BreakpointPrinter.h
  stable/12/contrib/llvm/tools/opt/Debugify.cpp   (contents, props changed)
  stable/12/contrib/llvm/tools/opt/NewPMDriver.cpp
  stable/12/contrib/llvm/tools/opt/NewPMDriver.h
  stable/12/contrib/llvm/tools/opt/PassPrinters.cpp
  stable/12/contrib/llvm/tools/opt/PassPrinters.h
  stable/12/contrib/llvm/tools/opt/opt.cpp
  stable/12/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/CTagsEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
  stable/12/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenInstruction.h
  stable/12/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
  stable/12/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenRegisters.h
  stable/12/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenSchedule.h
  stable/12/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
  stable/12/contrib/llvm/utils/TableGen/CodeGenTarget.h
  stable/12/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/DAGISelMatcher.h
  stable/12/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
  stable/12/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
  stable/12/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/InfoByHwMode.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/InfoByHwMode.h   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/InstrDocsEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/RegisterBankEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
  stable/12/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/TableGen.cpp
  stable/12/contrib/llvm/utils/TableGen/TableGenBackends.h
  stable/12/contrib/llvm/utils/TableGen/X86DisassemblerShared.h
  stable/12/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
  stable/12/contrib/llvm/utils/TableGen/X86DisassemblerTables.h
  stable/12/contrib/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/X86FoldTablesEmitter.cpp   (contents, props changed)
  stable/12/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
  stable/12/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
  stable/12/etc/mtree/BSD.debug.dist
  stable/12/etc/mtree/BSD.usr.dist
  stable/12/lib/Makefile
  stable/12/lib/clang/freebsd_cc_version.h
  stable/12/lib/clang/headers/Makefile
  stable/12/lib/clang/include/clang/Basic/Version.inc
  stable/12/lib/clang/include/clang/Config/config.h
  stable/12/lib/clang/include/lld/Common/Version.inc
  stable/12/lib/clang/include/lldb/Host/Config.h
  stable/12/lib/clang/include/llvm/Config/config.h
  stable/12/lib/clang/include/llvm/Config/llvm-config.h
  stable/12/lib/clang/include/llvm/Support/VCSRevision.h
  stable/12/lib/clang/libclang/Makefile
  stable/12/lib/clang/liblldb/Makefile
  stable/12/lib/clang/libllvm/Makefile
  stable/12/lib/clang/libllvmminimal/Makefile
  stable/12/lib/libc++/Makefile
  stable/12/lib/libc++experimental/Makefile
  stable/12/lib/libclang_rt/Makefile
  stable/12/lib/libclang_rt/Makefile.inc
  stable/12/lib/libclang_rt/asan/Makefile
  stable/12/lib/libclang_rt/asan_dynamic/Makefile
  stable/12/lib/libclang_rt/include/Makefile
  stable/12/lib/libclang_rt/safestack/Makefile
  stable/12/lib/libclang_rt/stats/Makefile
  stable/12/lib/libclang_rt/tsan/Makefile
  stable/12/lib/libclang_rt/tsan_cxx/Makefile
  stable/12/lib/libclang_rt/ubsan_standalone/Makefile
  stable/12/share/mk/bsd.sys.mk
  stable/12/share/mk/src.opts.mk
  stable/12/sys/conf/files
  stable/12/sys/conf/kern.mk
  stable/12/sys/conf/kern.pre.mk
  stable/12/sys/conf/ldscript.i386
  stable/12/sys/i386/i386/locore.s
  stable/12/sys/modules/fxp/Makefile
  stable/12/tools/build/mk/OptionalObsoleteFiles.inc
  stable/12/usr.bin/clang/Makefile
  stable/12/usr.bin/clang/bugpoint/bugpoint.1
  stable/12/usr.bin/clang/clang/Makefile
  stable/12/usr.bin/clang/clang/clang.1
  stable/12/usr.bin/clang/llc/llc.1
  stable/12/usr.bin/clang/lld/Makefile
  stable/12/usr.bin/clang/lli/Makefile
  stable/12/usr.bin/clang/lli/lli.1
  stable/12/usr.bin/clang/llvm-ar/llvm-ar.1
  stable/12/usr.bin/clang/llvm-as/llvm-as.1
  stable/12/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1
  stable/12/usr.bin/clang/llvm-cov/llvm-cov.1
  stable/12/usr.bin/clang/llvm-diff/llvm-diff.1
  stable/12/usr.bin/clang/llvm-dis/llvm-dis.1
  stable/12/usr.bin/clang/llvm-dwarfdump/llvm-dwarfdump.1
  stable/12/usr.bin/clang/llvm-extract/llvm-extract.1
  stable/12/usr.bin/clang/llvm-link/llvm-link.1
  stable/12/usr.bin/clang/llvm-nm/llvm-nm.1
  stable/12/usr.bin/clang/llvm-objcopy/Makefile
  stable/12/usr.bin/clang/llvm-pdbutil/Makefile
  stable/12/usr.bin/clang/llvm-pdbutil/llvm-pdbutil.1
  stable/12/usr.bin/clang/llvm-profdata/llvm-profdata.1
  stable/12/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1
  stable/12/usr.bin/clang/llvm-tblgen/Makefile
  stable/12/usr.bin/clang/llvm-tblgen/llvm-tblgen.1
  stable/12/usr.bin/clang/llvm-xray/Makefile
  stable/12/usr.bin/clang/opt/Makefile
  stable/12/usr.bin/clang/opt/opt.1
Directory Properties:
  stable/12/   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/allocator_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/coverage_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/dfsan_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/esan_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/hwasan_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/lsan_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/tsan_interface.h   (props changed)
  stable/12/contrib/compiler-rt/include/sanitizer/tsan_interface_atomic.h   (props changed)
  stable/12/contrib/compiler-rt/lib/BlocksRuntime/Block.h   (props changed)
  stable/12/contrib/compiler-rt/lib/BlocksRuntime/Block_private.h   (props changed)
  stable/12/contrib/compiler-rt/lib/BlocksRuntime/data.c   (props changed)
  stable/12/contrib/compiler-rt/lib/BlocksRuntime/runtime.c   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_activation.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_activation.h   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_activation_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_fuchsia.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_init_version.h   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_interface.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_premap_shadow.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_premap_shadow.h   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_scariness_score.h   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_suppressions.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_suppressions.h   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/asan/weak_symbols.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/README.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/aarch64/chkstk.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/absvdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/absvsi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/absvti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/adddf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/addsf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/addtf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/addvdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/addvsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/addvti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/apple_versioning.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/addsf3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmpeq_check_nan.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmpeq_check_nan.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_div0.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_frsub.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_memcmp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_memcpy.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_memmove.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_uldivmod.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/bswapdi2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/bswapsi2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/clzdi2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/clzsi2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/comparesf2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/divdf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/divsi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/modsi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/restore_vfp_d8_d15_regs.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/save_vfp_d8_d15_regs.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/switch16.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/switch32.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/switch8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/switchu8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync-ops.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_8.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/sync_synchronize.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/udivmodsi4.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/udivsi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/umodsi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/unorddf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ashldi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ashlti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ashrdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ashrti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/assembly.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/bswapdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/bswapsi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/clzsi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/clzti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/cmpdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/cmpti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/comparedf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/comparesf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/comparetf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ctzsi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ctzti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divdc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divdf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divmoddi4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divmodsi4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divsc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divsf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divtc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divtf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/divxc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/enable_execute_stack.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/eprintf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/extenddftf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/extendhfsf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/extendsfdf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/extendsftf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ffsdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ffssi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ffsti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixdfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixdfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixdfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixsfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixsfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixsfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixtfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixtfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixtfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunsdfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunsdfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunsdfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunssfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunssfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunssfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunstfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunstfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunstfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunsxfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunsxfsi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixunsxfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixxfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fixxfti.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatdidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatdisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatditf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatdixf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatsidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatsisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatsitf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floattidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floattisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floattitf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floattixf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatundidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatundisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatunditf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatundixf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatunsidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatunsisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatunsitf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatuntidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatuntisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatuntitf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/floatuntixf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_add_impl.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_extend.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_extend_impl.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_lib.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_mul_impl.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_trunc.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/fp_trunc_impl.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/ashldi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/ashrdi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/chkstk.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/chkstk2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/divdi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/floatdidf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/floatdisf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/floatdixf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/floatundidf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/floatundisf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/floatundixf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/lshrdi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/moddi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/muldi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/udivdi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/i386/umoddi3.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/int_endianness.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/int_lib.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/int_math.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/int_util.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/int_util.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/lshrdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/lshrti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/moddi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/modsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/modti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/muldc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/muldf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/muldi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulodi4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulosi4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/muloti4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulsc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulsf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/multf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/multi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulvdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulvsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulvti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/mulxc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negdf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negsf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negvdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negvsi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/negvti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/paritydi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/paritysi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/parityti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/popcountdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/popcountsi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/popcountti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/powidf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/powisf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/powitf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/powixf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/DD.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/divtc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/fixtfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/fixunstfdi.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/floatditf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/floatunditf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/gcc_qadd.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/gcc_qdiv.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/gcc_qmul.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/gcc_qsub.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/multc3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/restFP.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ppc/saveFP.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/subdf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/subsf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/subtf3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/subvdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/subvsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/subvti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/trampoline_setup.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/truncdfhf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/truncdfsf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/truncsfhf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/trunctfdf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/trunctfsf2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ucmpdi2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/ucmpti2.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/udivdi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/udivmoddi4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/udivmodsi4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/udivmodti4.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/udivsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/udivti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/umoddi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/umodsi3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/umodti3.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/chkstk2.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/floatdidf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/floatdisf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/floatdixf.c   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/floatundidf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/floatundisf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/builtins/x86_64/floatundixf.S   (props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/dfsan.h   (props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/dfsan_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/dfsan_interceptors.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/dfsan_platform.h   (props changed)
  stable/12/contrib/compiler-rt/lib/dfsan/libc_ubuntu1404_abilist.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/cache_frag.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/cache_frag.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_circular_buffer.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_flags.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_flags.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_hashtable.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_interface.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_interface_internal.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_linux.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_shadow.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/esan_sideline.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/working_set.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/working_set.h   (props changed)
  stable/12/contrib/compiler-rt/lib/esan/working_set_posix.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h   (props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_blacklist.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_flags.h   (props changed)
  stable/12/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h   (props changed)
  stable/12/contrib/compiler-rt/lib/lsan/lsan_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/lsan/lsan_linux.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/lsan/lsan_mac.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/lsan/lsan_preinit.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/lsan/weak_symbols.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_allocator.h   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.h   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_origin.h   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_poisoning.h   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_thread.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/msan/msan_thread.h   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfiling.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingInternal.h   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingNameVar.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPlatformOther.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingRuntime.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/InstrProfilingWriter.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/WindowsMMap.c   (props changed)
  stable/12/contrib/compiler-rt/lib/profile/WindowsMMap.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sancov_begin.S   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sancov_end.S   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_asm.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_mips.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_x86.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_bitvector.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_bvgraph.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface_posix.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_interface.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_freebsd.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_mips64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_x86_64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_signal_interceptors.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepotbase.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_aarch64.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_arm.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh   (props changed)
  stable/12/contrib/compiler-rt/lib/sanitizer_common/weak_symbols.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_crc32.cpp   (props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_crc32.h   (props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_flags.h   (props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/scudo/scudo_utils.h   (props changed)
  stable/12/contrib/compiler-rt/lib/stats/stats.h   (props changed)
  stable/12/contrib/compiler-rt/lib/stats/stats_client.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/dd/dd_rtl.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/dd/dd_rtl.h   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_dense_alloc.h   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.h   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_ppc_regs.h   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_preinit.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mips64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_ppc64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_flags.h   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_init.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_init.h   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.h   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/ubsan/weak_symbols.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/weak_symbols.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_always_instrument.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_defs.h   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_fdr_logging.h   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_never_instrument.txt   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_powerpc64.inc   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_AArch64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_arm.S   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64_asm.S   (props changed)
  stable/12/contrib/compiler-rt/lib/xray/xray_tsc.h   (props changed)
  stable/12/contrib/libc++/include/__bsd_locale_defaults.h   (props changed)
  stable/12/contrib/libc++/include/complex.h   (props changed)
  stable/12/contrib/libc++/include/ctype.h   (props changed)
  stable/12/contrib/libc++/include/errno.h   (props changed)
  stable/12/contrib/libc++/include/inttypes.h   (props changed)
  stable/12/contrib/libc++/include/limits.h   (props changed)
  stable/12/contrib/libc++/include/locale.h   (props changed)
  stable/12/contrib/libc++/include/setjmp.h   (props changed)
  stable/12/contrib/libc++/include/stdbool.h   (props changed)
  stable/12/contrib/libc++/include/stddef.h   (props changed)
  stable/12/contrib/libc++/include/stdint.h   (props changed)
  stable/12/contrib/libc++/include/stdlib.h   (props changed)
  stable/12/contrib/libc++/include/string.h   (props changed)
  stable/12/contrib/libc++/include/wchar.h   (props changed)
  stable/12/contrib/libc++/include/wctype.h   (props changed)
  stable/12/contrib/libc++/src/algorithm.cpp   (props changed)
  stable/12/contrib/libc++/src/condition_variable.cpp   (props changed)
  stable/12/contrib/libc++/src/debug.cpp   (props changed)
  stable/12/contrib/libc++/src/exception.cpp   (props changed)
  stable/12/contrib/libc++/src/functional.cpp   (props changed)
  stable/12/contrib/libc++/src/hash.cpp   (props changed)
  stable/12/contrib/libc++/src/include/atomic_support.h   (props changed)
  stable/12/contrib/libc++/src/include/refstring.h   (props changed)
  stable/12/contrib/libc++/src/ios.cpp   (props changed)
  stable/12/contrib/libc++/src/iostream.cpp   (props changed)
  stable/12/contrib/libc++/src/random.cpp   (props changed)
  stable/12/contrib/libc++/src/regex.cpp   (props changed)
  stable/12/contrib/libc++/src/stdexcept.cpp   (props changed)
  stable/12/contrib/libc++/src/string.cpp   (props changed)
  stable/12/contrib/libc++/src/strstream.cpp   (props changed)
  stable/12/contrib/libc++/src/thread.cpp   (props changed)
  stable/12/contrib/libc++/src/valarray.cpp   (props changed)
  stable/12/contrib/libc++/src/variant.cpp   (props changed)
  stable/12/contrib/libc++/src/vector.cpp   (props changed)
  stable/12/contrib/llvm/include/llvm-c/ErrorHandling.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/AllocatorList.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/BitmaskEnum.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/BreadthFirstIterator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/PointerSumType.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/PriorityWorklist.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/Sequence.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/ilist_base.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/ilist_iterator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/ilist_node_base.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ADT/simple_ilist.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Analysis/ValueLatticeUtils.h   (props changed)
  stable/12/contrib/llvm/include/llvm/AsmParser/SlotMapping.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/ExpandReductions.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/FaultMaps.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Types.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/LiveStacks.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/LowLevelType.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/UnreachableBlockElim.h   (props changed)
  stable/12/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/Line.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordName.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/MSF/IMSFFile.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/MSF/MSFError.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/EnumTables.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/Formatters.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/Hash.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFile.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTable.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolStream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h   (props changed)
  stable/12/contrib/llvm/include/llvm/FuzzMutate/IRMutator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/FuzzMutate/Operations.h   (props changed)
  stable/12/contrib/llvm/include/llvm/FuzzMutate/Random.h   (props changed)
  stable/12/contrib/llvm/include/llvm/FuzzMutate/RandomIRBuilder.h   (props changed)
  stable/12/contrib/llvm/include/llvm/IR/DerivedUser.h   (props changed)
  stable/12/contrib/llvm/include/llvm/IR/GlobalIFunc.h   (props changed)
  stable/12/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h   (props changed)
  stable/12/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h   (props changed)
  stable/12/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h   (props changed)
  stable/12/contrib/llvm/include/llvm/LTO/LTOBackend.h   (props changed)
  stable/12/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h   (props changed)
  stable/12/contrib/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Linker/IRMover.h   (props changed)
  stable/12/contrib/llvm/include/llvm/MC/LaneBitmask.h   (props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h   (props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h   (props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h   (props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h   (props changed)
  stable/12/contrib/llvm/include/llvm/MC/MCSymbolELF.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Object/ArchiveWriter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Object/COFFModuleDefinition.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Object/IRSymtab.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Object/StackMapParser.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Object/SymbolSize.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Object/WindowsResource.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ObjectYAML/ObjectYAML.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/ARMAttributeParser.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryItemStream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/BinaryStreamError.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/COM.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/Chrono.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/FormatCommon.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/FormatProviders.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/GlobPattern.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/NativeFormatting.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/Printable.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/ReverseIteration.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/SHA1.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/Solaris/sys/regset.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/TarWriter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/TrigramIndex.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/TypeName.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/raw_sha1_ostream.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Support/thread.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h   (props changed)
  stable/12/contrib/llvm/include/llvm/ToolDrivers/llvm-lib/LibDriver.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Coroutines.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/CalledValuePropagation.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/ConstantMerge.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/GlobalDCE.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/GlobalOpt.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/GlobalSplit.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/Internalize.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/PartialInlining.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/BoundsChecking.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/ADCE.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/BDCE.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/DCE.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/DivRemPairs.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/Float2Int.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/GuardWidening.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LICM.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopPredication.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/Sink.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/CallPromotionUtils.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SanitizerStats.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/SplitModule.h   (props changed)
  stable/12/contrib/llvm/include/llvm/Transforms/Utils/VNCoercion.h   (props changed)
  stable/12/contrib/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h   (props changed)
  stable/12/contrib/llvm/include/llvm/WindowsResource/ResourceProcessor.h   (props changed)
  stable/12/contrib/llvm/include/llvm/WindowsResource/ResourceScriptToken.h   (props changed)
  stable/12/contrib/llvm/include/llvm/WindowsResource/ResourceScriptTokenList.h   (props changed)
  stable/12/contrib/llvm/include/llvm/XRay/Graph.h   (props changed)
  stable/12/contrib/llvm/include/llvm/XRay/InstrumentationMap.h   (props changed)
  stable/12/contrib/llvm/include/llvm/XRay/Trace.h   (props changed)
  stable/12/contrib/llvm/lib/Analysis/AliasAnalysisSummary.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/AssumptionCache.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/CallPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/CmpInstAnalysis.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/TypeMetadataUtils.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/ValueLattice.cpp   (props changed)
  stable/12/contrib/llvm/lib/Analysis/ValueLatticeUtils.cpp   (props changed)
  stable/12/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h   (props changed)
  stable/12/contrib/llvm/lib/Bitcode/Reader/ValueList.h   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/FEntryInserter.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/LiveRangeUtils.h   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/LiveStacks.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/LowLevelType.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/SafeStackColoring.h   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/AppendingTypeTableBuilder.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/Formatters.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/Line.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/MergingTypeTableBuilder.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/MSF/MSFError.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/EnumTables.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/Hash.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumSymbol.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/RawError.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h   (props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp   (props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp   (props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp   (props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h   (props changed)
  stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h   (props changed)
  stable/12/contrib/llvm/lib/FuzzMutate/OpDescriptor.cpp   (props changed)
  stable/12/contrib/llvm/lib/FuzzMutate/Operations.cpp   (props changed)
  stable/12/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp   (props changed)
  stable/12/contrib/llvm/lib/IR/MetadataImpl.h   (props changed)
  stable/12/contrib/llvm/lib/IR/Statepoint.cpp   (props changed)
  stable/12/contrib/llvm/lib/LTO/UpdateCompilerUsed.cpp   (props changed)
  stable/12/contrib/llvm/lib/Linker/LinkDiagnosticInfo.h   (props changed)
  stable/12/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCCodePadder.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCInstrDesc.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCSectionWasm.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCSymbolELF.cpp   (props changed)
  stable/12/contrib/llvm/lib/MC/MCWinEH.cpp   (props changed)
  stable/12/contrib/llvm/lib/Object/Decompressor.cpp   (props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp   (props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/DWARFVisitor.cpp   (props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/DWARFYAML.cpp   (props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/MachOYAML.cpp   (props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/ObjectYAML.cpp   (props changed)
  stable/12/contrib/llvm/lib/ObjectYAML/YAML.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/BinaryStreamError.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/BinaryStreamReader.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/BinaryStreamWriter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/FormatVariadic.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/GlobPattern.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/JamCRC.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/KnownBits.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/LowLevelType.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/MathExtras.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/Options.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/ScopedPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/ThreadPool.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/TrigramIndex.cpp   (props changed)
  stable/12/contrib/llvm/lib/Support/Unix/COM.inc   (props changed)
  stable/12/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc   (props changed)
  stable/12/contrib/llvm/lib/Support/Windows/COM.inc   (props changed)
  stable/12/contrib/llvm/lib/Support/Windows/Threading.inc   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUFixupKinds.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARC.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCExpandPseudos.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCFrameLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCISelDAGToDAG.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCInstrInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCSubtarget.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCSubtarget.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCTargetMachine.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCTargetMachine.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCTargetStreamer.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/ARCTargetTransformInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMBasicBlockInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMCallLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/Utils/ARMBaseInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRFrameLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRFrameLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRISelLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRSubtarget.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRSubtarget.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRTargetMachine.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h   (props changed)
  stable/12/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFFrameLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFFrameLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFMCInstLower.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFMCInstLower.h   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/BPFTargetMachine.h   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.h   (props changed)
  stable/12/contrib/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFCopy.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFGraph.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFRegisters.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Hexagon/RDFRegisters.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/Lanai.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiAluCode.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiCondCode.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Mips/MipsCCState.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Mips/MipsCCState.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Mips/Relocation.txt   (props changed)
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2BaseInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2FixupKinds.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2AsmPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2MCInstLower.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.h   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Nios2/TargetInfo/Nios2TargetInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCCCState.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCCCState.h   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.h   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/PowerPC/README_P9.txt   (props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVSubtarget.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.h   (props changed)
  stable/12/contrib/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Sparc/LeonPasses.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/Sparc/LeonPasses.h   (props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86CallLowering.h   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86CallingConv.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86FixupSetCC.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86LegalizerInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86MacroFusion.h   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp   (props changed)
  stable/12/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h   (props changed)
  stable/12/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroInstr.h   (props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/GlobalSplit.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/DivRemPairs.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LoopPassManager.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp   (props changed)
  stable/12/contrib/llvm/lib/Transforms/Utils/SanitizerStats.cpp   (props changed)
  stable/12/contrib/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp   (props changed)
  stable/12/contrib/llvm/lib/XRay/InstrumentationMap.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/OSLog.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Analysis/BodyFarm.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/PragmaKinds.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Basic/SanitizerSpecialCaseList.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Sema/CleanupInfo.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiff.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiffInternal.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/ASTSelection.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Extract/Extract.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringAction.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRuleRequirements.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRules.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOption.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptionVisitor.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptions.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringRuleContext.h   (props changed)
  stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolOccurrences.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/DataCollection.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/ExprObjC.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/AST/Linkage.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Analysis/CodeInjector.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Analysis/OSLog.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/SanitizerSpecialCaseList.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/XCore.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/XCore.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/Address.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/AVR.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/AVR.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Contiki.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVCSetupApi.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/XCore.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/XCore.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/adxintrin.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/arm64intr.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/armintr.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/htmintrin.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/inttypes.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/msa.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/s390intrin.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/stdatomic.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/vadefs.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Headers/vecintrin.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/FixIt.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/RefactoringActions.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp   (props changed)
  stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/CMakeLists.txt   (props changed)
  stable/12/contrib/llvm/tools/lld/CODE_OWNERS.TXT   (props changed)
  stable/12/contrib/llvm/tools/lld/COFF/MapFile.h   (props changed)
  stable/12/contrib/llvm/tools/lld/COFF/MinGW.h   (props changed)
  stable/12/contrib/llvm/tools/lld/Common/Memory.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/Common/Reproduce.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/Common/Threads.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/Common/Version.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Arch/AVR.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Bits.h   (props changed)
  stable/12/contrib/llvm/tools/lld/ELF/EhFrame.h   (props changed)
  stable/12/contrib/llvm/tools/lld/ELF/Filesystem.h   (props changed)
  stable/12/contrib/llvm/tools/lld/ELF/ScriptLexer.h   (props changed)
  stable/12/contrib/llvm/tools/lld/ELF/ScriptParser.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Args.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/LLVM.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Memory.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Reproduce.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Threads.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Common/Version.inc.in   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Atom.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Error.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Node.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Pass.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/Reference.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/Core/UndefinedAtom.h   (props changed)
  stable/12/contrib/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/CMakeLists.txt   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/CMakeLists.txt   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/DefinedAtom.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/Error.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/File.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/Reader.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/Resolver.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/SymbolTable.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/Core/Writer.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/CMakeLists.txt   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/File.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt   (props changed)
  stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp   (props changed)
  stable/12/contrib/llvm/tools/lld/tools/lld/CMakeLists.txt   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointName.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBProcessInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBQueue.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBTrace.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Time.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/JavaASTContext.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Logging.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBProcessInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBQueue.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBTrace.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointName.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/Expression.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/GetOptInc.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/gen_go_ast.py   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFUtils.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64le-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/NtStructures.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/DebugMacros.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/FileAction.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/Language.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/Queue.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/QueueList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/Baton.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/Connection.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/Logging.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/PPC64LE_DWARF_Registers.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/PPC64LE_ehframe_Registers.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/StringList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/Timer.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/source/Utility/UserID.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/driver/Platform.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/driver/Platform.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h   (props changed)
  stable/12/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-cov/gcov.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-cxxdump/Error.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/Analyze.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/BytesOutputStyle.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/FormatUtil.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/FormatUtil.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/LinePrinter.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/LinePrinter.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/OutputStyle.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp   (props changed)
  stable/12/contrib/llvm/tools/llvm-readobj/WindowsResourceDumper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-xray/trie-node.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-xray/xray-color-helper.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-xray/xray-converter.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-xray/xray-graph-diff.h   (props changed)
  stable/12/contrib/llvm/tools/llvm-xray/xray-registry.h   (props changed)
  stable/12/contrib/llvm/utils/TableGen/Attributes.cpp   (props changed)
  stable/12/contrib/llvm/utils/TableGen/CodeGenHwModes.cpp   (props changed)
  stable/12/contrib/llvm/utils/TableGen/CodeGenHwModes.h   (props changed)
  stable/12/contrib/llvm/utils/TableGen/SDNodeProperties.cpp   (props changed)
  stable/12/contrib/llvm/utils/TableGen/SDNodeProperties.h   (props changed)
  stable/12/contrib/llvm/utils/TableGen/Types.cpp   (props changed)
  stable/12/contrib/llvm/utils/TableGen/Types.h   (props changed)

Modified: stable/12/ObsoleteFiles.inc
==============================================================================
--- stable/12/ObsoleteFiles.inc	Sat Feb 16 12:49:55 2019	(r344211)
+++ stable/12/ObsoleteFiles.inc	Sat Feb 16 15:43:49 2019	(r344212)
@@ -38,6 +38,142 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20190216: new clang import which bumps version from 6.0.1 to 7.0.1.
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/esan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/hwasan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/scudo_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/tsan_interface.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/6.0.1/include/sanitizer
+OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_complex_builtins.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/altivec.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/arm64intr.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/armintr.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512bitalgintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vbmi2intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlbitalgintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlvbmi2intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlvnniintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vnniintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vpopcntdqintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vpopcntdqvlintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/cetintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/clwbintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/clzerointrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/cpuid.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/gfniintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/immintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/lwpintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/module.modulemap
+OLD_FILES+=usr/lib/clang/6.0.1/include/msa.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/vadefs.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/vaesintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/vpclmulqdqintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/6.0.1/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/6.0.1/include
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-armhf.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_DIRS+=usr/lib/clang/6.0.1/lib/freebsd
+OLD_DIRS+=usr/lib/clang/6.0.1/lib
+OLD_DIRS+=usr/lib/clang/6.0.1
 # 20181116: Rename test file.
 OLD_FILES+=usr/tests/sys/netinet/reuseport_lb
 # 20181030: malloc_domain(9) KPI change

Modified: stable/12/UPDATING
==============================================================================
--- stable/12/UPDATING	Sat Feb 16 12:49:55 2019	(r344211)
+++ stable/12/UPDATING	Sat Feb 16 15:43:49 2019	(r344212)
@@ -16,6 +16,12 @@ from older versions of FreeBSD, try WITHOUT_CLANG and 
 the tip of head, and then rebuild without this option. The bootstrap process
 from older version of current across the gcc/clang cutover is a bit fragile.
 
+20190216:
+	Clang, llvm, lld, lldb, compiler-rt and libc++ have been upgraded to
+	7.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.
+
 20190214:
 	Iflib is no longer unconditionally compiled into the kernel.  Drivers
 	using iflib and statically compiled into the kernel, now require

Modified: stable/12/contrib/compiler-rt/LICENSE.TXT
==============================================================================
--- stable/12/contrib/compiler-rt/LICENSE.TXT	Sat Feb 16 12:49:55 2019	(r344211)
+++ stable/12/contrib/compiler-rt/LICENSE.TXT	Sat Feb 16 15:43:49 2019	(r344212)
@@ -14,7 +14,7 @@ Full text of the relevant licenses is included below.
 University of Illinois/NCSA
 Open Source License
 
-Copyright (c) 2009-2016 by the contributors listed in CREDITS.TXT
+Copyright (c) 2009-2018 by the contributors listed in CREDITS.TXT
 
 All rights reserved.
 

Modified: stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Sat Feb 16 12:49:55 2019	(r344211)
+++ stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Sat Feb 16 15:43:49 2019	(r344212)
@@ -65,6 +65,11 @@ extern "C" {
   void __sanitizer_unaligned_store32(void *p, uint32_t x);
   void __sanitizer_unaligned_store64(void *p, uint64_t x);
 
+  // Returns 1 on the first call, then returns 0 thereafter.  Called by the tool
+  // to ensure only one report is printed when multiple errors occur
+  // simultaneously.
+  int __sanitizer_acquire_crash_state();
+
   // Annotate the current state of a contiguous container, such as
   // std::vector, std::string or similar.
   // A contiguous container is a container that keeps all of its elements

Modified: stable/12/contrib/compiler-rt/include/sanitizer/msan_interface.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/sanitizer/msan_interface.h	Sat Feb 16 12:49:55 2019	(r344211)
+++ stable/12/contrib/compiler-rt/include/sanitizer/msan_interface.h	Sat Feb 16 15:43:49 2019	(r344212)
@@ -104,6 +104,14 @@ extern "C" {
      copy. Source and destination regions can overlap. */
   void __msan_copy_shadow(const volatile void *dst, const volatile void *src,
                           size_t size);
+
+  /* Disables uninitialized memory checks in interceptors. */
+  void __msan_scoped_disable_interceptor_checks(void);
+
+  /* Re-enables uninitialized memory checks in interceptors after a previous
+     call to __msan_scoped_disable_interceptor_checks. */
+  void __msan_scoped_enable_interceptor_checks(void);
+
 #ifdef __cplusplus
 }  // extern "C"
 #endif

Copied: stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h (from r341825, head/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h	Sat Feb 16 15:43:49 2019	(r344212, copy of r341825, head/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h)
@@ -0,0 +1,4734 @@
+//===-- netbsd_syscall_hooks.h --------------------------------------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of public sanitizer interface.
+//
+// System call handlers.
+//
+// Interface methods declared in this header implement pre- and post- syscall
+// actions for the active sanitizer.
+// Usage:
+//   __sanitizer_syscall_pre_getfoo(...args...);
+//   long long res = syscall(SYS_getfoo, ...args...);
+//   __sanitizer_syscall_post_getfoo(res, ...args...);
+//
+// DO NOT EDIT! THIS FILE HAS BEEN GENERATED!
+//
+// Generated with: generate_netbsd_syscalls.awk
+// Generated date: 2018-03-03
+// Generated from: syscalls.master,v 1.291 2018/01/06 16:41:23 kamil Exp
+//
+//===----------------------------------------------------------------------===//
+#ifndef SANITIZER_NETBSD_SYSCALL_HOOKS_H
+#define SANITIZER_NETBSD_SYSCALL_HOOKS_H
+
+#define __sanitizer_syscall_pre_syscall(code, arg0, arg1, arg2, arg3, arg4,    \
+                                        arg5, arg6, arg7)                      \
+  __sanitizer_syscall_pre_impl_syscall(                                        \
+      (long long)(code), (long long)(arg0), (long long)(arg1),                 \
+      (long long)(arg2), (long long)(arg3), (long long)(arg4),                 \
+      (long long)(arg5), (long long)(arg6), (long long)(arg7))
+#define __sanitizer_syscall_post_syscall(res, code, arg0, arg1, arg2, arg3,    \
+                                         arg4, arg5, arg6, arg7)               \
+  __sanitizer_syscall_post_impl_syscall(                                       \
+      res, (long long)(code), (long long)(arg0), (long long)(arg1),            \
+      (long long)(arg2), (long long)(arg3), (long long)(arg4),                 \
+      (long long)(arg5), (long long)(arg6), (long long)(arg7))
+#define __sanitizer_syscall_pre_exit(rval)                                     \
+  __sanitizer_syscall_pre_impl_exit((long long)(rval))
+#define __sanitizer_syscall_post_exit(res, rval)                               \
+  __sanitizer_syscall_post_impl_exit(res, (long long)(rval))
+#define __sanitizer_syscall_pre_fork() __sanitizer_syscall_pre_impl_fork()
+#define __sanitizer_syscall_post_fork(res)                                     \
+  __sanitizer_syscall_post_impl_fork(res)
+#define __sanitizer_syscall_pre_read(fd, buf, nbyte)                           \
+  __sanitizer_syscall_pre_impl_read((long long)(fd), (long long)(buf),         \
+                                    (long long)(nbyte))
+#define __sanitizer_syscall_post_read(res, fd, buf, nbyte)                     \
+  __sanitizer_syscall_post_impl_read(res, (long long)(fd), (long long)(buf),   \
+                                     (long long)(nbyte))
+#define __sanitizer_syscall_pre_write(fd, buf, nbyte)                          \
+  __sanitizer_syscall_pre_impl_write((long long)(fd), (long long)(buf),        \
+                                     (long long)(nbyte))
+#define __sanitizer_syscall_post_write(res, fd, buf, nbyte)                    \
+  __sanitizer_syscall_post_impl_write(res, (long long)(fd), (long long)(buf),  \
+                                      (long long)(nbyte))
+#define __sanitizer_syscall_pre_open(path, flags, mode)                        \
+  __sanitizer_syscall_pre_impl_open((long long)(path), (long long)(flags),     \
+                                    (long long)(mode))
+#define __sanitizer_syscall_post_open(res, path, flags, mode)                  \
+  __sanitizer_syscall_post_impl_open(res, (long long)(path),                   \
+                                     (long long)(flags), (long long)(mode))
+#define __sanitizer_syscall_pre_close(fd)                                      \
+  __sanitizer_syscall_pre_impl_close((long long)(fd))
+#define __sanitizer_syscall_post_close(res, fd)                                \
+  __sanitizer_syscall_post_impl_close(res, (long long)(fd))
+#define __sanitizer_syscall_pre_compat_50_wait4(pid, status, options, rusage)  \
+  __sanitizer_syscall_pre_impl_compat_50_wait4(                                \
+      (long long)(pid), (long long)(status), (long long)(options),             \
+      (long long)(rusage))
+#define __sanitizer_syscall_post_compat_50_wait4(res, pid, status, options,    \
+                                                 rusage)                       \
+  __sanitizer_syscall_post_impl_compat_50_wait4(                               \
+      res, (long long)(pid), (long long)(status), (long long)(options),        \
+      (long long)(rusage))
+#define __sanitizer_syscall_pre_compat_43_ocreat(path, mode)                   \
+  __sanitizer_syscall_pre_impl_compat_43_ocreat((long long)(path),             \
+                                                (long long)(mode))
+#define __sanitizer_syscall_post_compat_43_ocreat(res, path, mode)             \
+  __sanitizer_syscall_post_impl_compat_43_ocreat(res, (long long)(path),       \
+                                                 (long long)(mode))
+#define __sanitizer_syscall_pre_link(path, link)                               \
+  __sanitizer_syscall_pre_impl_link((long long)(path), (long long)(link))
+#define __sanitizer_syscall_post_link(res, path, link)                         \
+  __sanitizer_syscall_post_impl_link(res, (long long)(path), (long long)(link))
+#define __sanitizer_syscall_pre_unlink(path)                                   \
+  __sanitizer_syscall_pre_impl_unlink((long long)(path))
+#define __sanitizer_syscall_post_unlink(res, path)                             \
+  __sanitizer_syscall_post_impl_unlink(res, (long long)(path))
+/* syscall 11 has been skipped */
+#define __sanitizer_syscall_pre_chdir(path)                                    \
+  __sanitizer_syscall_pre_impl_chdir((long long)(path))
+#define __sanitizer_syscall_post_chdir(res, path)                              \
+  __sanitizer_syscall_post_impl_chdir(res, (long long)(path))
+#define __sanitizer_syscall_pre_fchdir(fd)                                     \
+  __sanitizer_syscall_pre_impl_fchdir((long long)(fd))
+#define __sanitizer_syscall_post_fchdir(res, fd)                               \
+  __sanitizer_syscall_post_impl_fchdir(res, (long long)(fd))
+#define __sanitizer_syscall_pre_compat_50_mknod(path, mode, dev)               \
+  __sanitizer_syscall_pre_impl_compat_50_mknod(                                \
+      (long long)(path), (long long)(mode), (long long)(dev))
+#define __sanitizer_syscall_post_compat_50_mknod(res, path, mode, dev)         \
+  __sanitizer_syscall_post_impl_compat_50_mknod(                               \
+      res, (long long)(path), (long long)(mode), (long long)(dev))
+#define __sanitizer_syscall_pre_chmod(path, mode)                              \
+  __sanitizer_syscall_pre_impl_chmod((long long)(path), (long long)(mode))
+#define __sanitizer_syscall_post_chmod(res, path, mode)                        \
+  __sanitizer_syscall_post_impl_chmod(res, (long long)(path), (long long)(mode))
+#define __sanitizer_syscall_pre_chown(path, uid, gid)                          \
+  __sanitizer_syscall_pre_impl_chown((long long)(path), (long long)(uid),      \
+                                     (long long)(gid))
+#define __sanitizer_syscall_post_chown(res, path, uid, gid)                    \
+  __sanitizer_syscall_post_impl_chown(res, (long long)(path),                  \
+                                      (long long)(uid), (long long)(gid))
+#define __sanitizer_syscall_pre_break(nsize)                                   \
+  __sanitizer_syscall_pre_impl_break((long long)(nsize))
+#define __sanitizer_syscall_post_break(res, nsize)                             \
+  __sanitizer_syscall_post_impl_break(res, (long long)(nsize))
+#define __sanitizer_syscall_pre_compat_20_getfsstat(buf, bufsize, flags)       \
+  __sanitizer_syscall_pre_impl_compat_20_getfsstat(                            \
+      (long long)(buf), (long long)(bufsize), (long long)(flags))
+#define __sanitizer_syscall_post_compat_20_getfsstat(res, buf, bufsize, flags) \
+  __sanitizer_syscall_post_impl_compat_20_getfsstat(                           \
+      res, (long long)(buf), (long long)(bufsize), (long long)(flags))
+#define __sanitizer_syscall_pre_compat_43_olseek(fd, offset, whence)           \
+  __sanitizer_syscall_pre_impl_compat_43_olseek(                               \
+      (long long)(fd), (long long)(offset), (long long)(whence))
+#define __sanitizer_syscall_post_compat_43_olseek(res, fd, offset, whence)     \
+  __sanitizer_syscall_post_impl_compat_43_olseek(                              \
+      res, (long long)(fd), (long long)(offset), (long long)(whence))
+#define __sanitizer_syscall_pre_getpid() __sanitizer_syscall_pre_impl_getpid()
+#define __sanitizer_syscall_post_getpid(res)                                   \
+  __sanitizer_syscall_post_impl_getpid(res)
+#define __sanitizer_syscall_pre_compat_40_mount(type, path, flags, data)       \
+  __sanitizer_syscall_pre_impl_compat_40_mount(                                \
+      (long long)(type), (long long)(path), (long long)(flags),                \
+      (long long)(data))
+#define __sanitizer_syscall_post_compat_40_mount(res, type, path, flags, data) \
+  __sanitizer_syscall_post_impl_compat_40_mount(                               \
+      res, (long long)(type), (long long)(path), (long long)(flags),           \
+      (long long)(data))
+#define __sanitizer_syscall_pre_unmount(path, flags)                           \
+  __sanitizer_syscall_pre_impl_unmount((long long)(path), (long long)(flags))
+#define __sanitizer_syscall_post_unmount(res, path, flags)                     \
+  __sanitizer_syscall_post_impl_unmount(res, (long long)(path),                \
+                                        (long long)(flags))
+#define __sanitizer_syscall_pre_setuid(uid)                                    \
+  __sanitizer_syscall_pre_impl_setuid((long long)(uid))
+#define __sanitizer_syscall_post_setuid(res, uid)                              \
+  __sanitizer_syscall_post_impl_setuid(res, (long long)(uid))
+#define __sanitizer_syscall_pre_getuid() __sanitizer_syscall_pre_impl_getuid()
+#define __sanitizer_syscall_post_getuid(res)                                   \
+  __sanitizer_syscall_post_impl_getuid(res)
+#define __sanitizer_syscall_pre_geteuid() __sanitizer_syscall_pre_impl_geteuid()
+#define __sanitizer_syscall_post_geteuid(res)                                  \
+  __sanitizer_syscall_post_impl_geteuid(res)
+#define __sanitizer_syscall_pre_ptrace(req, pid, addr, data)                   \
+  __sanitizer_syscall_pre_impl_ptrace((long long)(req), (long long)(pid),      \
+                                      (long long)(addr), (long long)(data))
+#define __sanitizer_syscall_post_ptrace(res, req, pid, addr, data)             \
+  __sanitizer_syscall_post_impl_ptrace(res, (long long)(req),                  \
+                                       (long long)(pid), (long long)(addr),    \
+                                       (long long)(data))
+#define __sanitizer_syscall_pre_recvmsg(s, msg, flags)                         \
+  __sanitizer_syscall_pre_impl_recvmsg((long long)(s), (long long)(msg),       \
+                                       (long long)(flags))
+#define __sanitizer_syscall_post_recvmsg(res, s, msg, flags)                   \
+  __sanitizer_syscall_post_impl_recvmsg(res, (long long)(s), (long long)(msg), \
+                                        (long long)(flags))
+#define __sanitizer_syscall_pre_sendmsg(s, msg, flags)                         \
+  __sanitizer_syscall_pre_impl_sendmsg((long long)(s), (long long)(msg),       \
+                                       (long long)(flags))
+#define __sanitizer_syscall_post_sendmsg(res, s, msg, flags)                   \
+  __sanitizer_syscall_post_impl_sendmsg(res, (long long)(s), (long long)(msg), \
+                                        (long long)(flags))
+#define __sanitizer_syscall_pre_recvfrom(s, buf, len, flags, from,             \
+                                         fromlenaddr)                          \
+  __sanitizer_syscall_pre_impl_recvfrom(                                       \
+      (long long)(s), (long long)(buf), (long long)(len), (long long)(flags),  \
+      (long long)(from), (long long)(fromlenaddr))
+#define __sanitizer_syscall_post_recvfrom(res, s, buf, len, flags, from,       \
+                                          fromlenaddr)                         \
+  __sanitizer_syscall_post_impl_recvfrom(                                      \
+      res, (long long)(s), (long long)(buf), (long long)(len),                 \
+      (long long)(flags), (long long)(from), (long long)(fromlenaddr))
+#define __sanitizer_syscall_pre_accept(s, name, anamelen)                      \
+  __sanitizer_syscall_pre_impl_accept((long long)(s), (long long)(name),       \
+                                      (long long)(anamelen))
+#define __sanitizer_syscall_post_accept(res, s, name, anamelen)                \
+  __sanitizer_syscall_post_impl_accept(res, (long long)(s), (long long)(name), \
+                                       (long long)(anamelen))
+#define __sanitizer_syscall_pre_getpeername(fdes, asa, alen)                   \
+  __sanitizer_syscall_pre_impl_getpeername(                                    \
+      (long long)(fdes), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_post_getpeername(res, fdes, asa, alen)             \
+  __sanitizer_syscall_post_impl_getpeername(                                   \
+      res, (long long)(fdes), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_pre_getsockname(fdes, asa, alen)                   \
+  __sanitizer_syscall_pre_impl_getsockname(                                    \
+      (long long)(fdes), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_post_getsockname(res, fdes, asa, alen)             \
+  __sanitizer_syscall_post_impl_getsockname(                                   \
+      res, (long long)(fdes), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_pre_access(path, flags)                            \
+  __sanitizer_syscall_pre_impl_access((long long)(path), (long long)(flags))
+#define __sanitizer_syscall_post_access(res, path, flags)                      \
+  __sanitizer_syscall_post_impl_access(res, (long long)(path),                 \
+                                       (long long)(flags))
+#define __sanitizer_syscall_pre_chflags(path, flags)                           \
+  __sanitizer_syscall_pre_impl_chflags((long long)(path), (long long)(flags))
+#define __sanitizer_syscall_post_chflags(res, path, flags)                     \
+  __sanitizer_syscall_post_impl_chflags(res, (long long)(path),                \
+                                        (long long)(flags))
+#define __sanitizer_syscall_pre_fchflags(fd, flags)                            \
+  __sanitizer_syscall_pre_impl_fchflags((long long)(fd), (long long)(flags))
+#define __sanitizer_syscall_post_fchflags(res, fd, flags)                      \
+  __sanitizer_syscall_post_impl_fchflags(res, (long long)(fd),                 \
+                                         (long long)(flags))
+#define __sanitizer_syscall_pre_sync() __sanitizer_syscall_pre_impl_sync()
+#define __sanitizer_syscall_post_sync(res)                                     \
+  __sanitizer_syscall_post_impl_sync(res)
+#define __sanitizer_syscall_pre_kill(pid, signum)                              \
+  __sanitizer_syscall_pre_impl_kill((long long)(pid), (long long)(signum))
+#define __sanitizer_syscall_post_kill(res, pid, signum)                        \
+  __sanitizer_syscall_post_impl_kill(res, (long long)(pid), (long long)(signum))
+#define __sanitizer_syscall_pre_compat_43_stat43(path, ub)                     \
+  __sanitizer_syscall_pre_impl_compat_43_stat43((long long)(path),             \
+                                                (long long)(ub))
+#define __sanitizer_syscall_post_compat_43_stat43(res, path, ub)               \
+  __sanitizer_syscall_post_impl_compat_43_stat43(res, (long long)(path),       \
+                                                 (long long)(ub))
+#define __sanitizer_syscall_pre_getppid() __sanitizer_syscall_pre_impl_getppid()
+#define __sanitizer_syscall_post_getppid(res)                                  \
+  __sanitizer_syscall_post_impl_getppid(res)
+#define __sanitizer_syscall_pre_compat_43_lstat43(path, ub)                    \
+  __sanitizer_syscall_pre_impl_compat_43_lstat43((long long)(path),            \
+                                                 (long long)(ub))
+#define __sanitizer_syscall_post_compat_43_lstat43(res, path, ub)              \
+  __sanitizer_syscall_post_impl_compat_43_lstat43(res, (long long)(path),      \
+                                                  (long long)(ub))
+#define __sanitizer_syscall_pre_dup(fd)                                        \
+  __sanitizer_syscall_pre_impl_dup((long long)(fd))
+#define __sanitizer_syscall_post_dup(res, fd)                                  \
+  __sanitizer_syscall_post_impl_dup(res, (long long)(fd))
+#define __sanitizer_syscall_pre_pipe() __sanitizer_syscall_pre_impl_pipe()
+#define __sanitizer_syscall_post_pipe(res)                                     \
+  __sanitizer_syscall_post_impl_pipe(res)
+#define __sanitizer_syscall_pre_getegid() __sanitizer_syscall_pre_impl_getegid()
+#define __sanitizer_syscall_post_getegid(res)                                  \
+  __sanitizer_syscall_post_impl_getegid(res)
+#define __sanitizer_syscall_pre_profil(samples, size, offset, scale)           \
+  __sanitizer_syscall_pre_impl_profil((long long)(samples), (long long)(size), \
+                                      (long long)(offset), (long long)(scale))
+#define __sanitizer_syscall_post_profil(res, samples, size, offset, scale)     \
+  __sanitizer_syscall_post_impl_profil(res, (long long)(samples),              \
+                                       (long long)(size), (long long)(offset), \
+                                       (long long)(scale))
+#define __sanitizer_syscall_pre_ktrace(fname, ops, facs, pid)                  \
+  __sanitizer_syscall_pre_impl_ktrace((long long)(fname), (long long)(ops),    \
+                                      (long long)(facs), (long long)(pid))
+#define __sanitizer_syscall_post_ktrace(res, fname, ops, facs, pid)            \
+  __sanitizer_syscall_post_impl_ktrace(res, (long long)(fname),                \
+                                       (long long)(ops), (long long)(facs),    \
+                                       (long long)(pid))
+#define __sanitizer_syscall_pre_compat_13_sigaction13(signum, nsa, osa)        \
+  __sanitizer_syscall_pre_impl_compat_13_sigaction13(                          \
+      (long long)(signum), (long long)(nsa), (long long)(osa))
+#define __sanitizer_syscall_post_compat_13_sigaction13(res, signum, nsa, osa)  \
+  __sanitizer_syscall_post_impl_compat_13_sigaction13(                         \
+      res, (long long)(signum), (long long)(nsa), (long long)(osa))
+#define __sanitizer_syscall_pre_getgid() __sanitizer_syscall_pre_impl_getgid()
+#define __sanitizer_syscall_post_getgid(res)                                   \
+  __sanitizer_syscall_post_impl_getgid(res)
+#define __sanitizer_syscall_pre_compat_13_sigprocmask13(how, mask)             \
+  __sanitizer_syscall_pre_impl_compat_13_sigprocmask13((long long)(how),       \
+                                                       (long long)(mask))
+#define __sanitizer_syscall_post_compat_13_sigprocmask13(res, how, mask)       \
+  __sanitizer_syscall_post_impl_compat_13_sigprocmask13(res, (long long)(how), \
+                                                        (long long)(mask))
+#define __sanitizer_syscall_pre___getlogin(namebuf, namelen)                   \
+  __sanitizer_syscall_pre_impl___getlogin((long long)(namebuf),                \
+                                          (long long)(namelen))
+#define __sanitizer_syscall_post___getlogin(res, namebuf, namelen)             \
+  __sanitizer_syscall_post_impl___getlogin(res, (long long)(namebuf),          \
+                                           (long long)(namelen))
+#define __sanitizer_syscall_pre___setlogin(namebuf)                            \
+  __sanitizer_syscall_pre_impl___setlogin((long long)(namebuf))
+#define __sanitizer_syscall_post___setlogin(res, namebuf)                      \
+  __sanitizer_syscall_post_impl___setlogin(res, (long long)(namebuf))
+#define __sanitizer_syscall_pre_acct(path)                                     \
+  __sanitizer_syscall_pre_impl_acct((long long)(path))
+#define __sanitizer_syscall_post_acct(res, path)                               \
+  __sanitizer_syscall_post_impl_acct(res, (long long)(path))
+#define __sanitizer_syscall_pre_compat_13_sigpending13()                       \
+  __sanitizer_syscall_pre_impl_compat_13_sigpending13()
+#define __sanitizer_syscall_post_compat_13_sigpending13(res)                   \
+  __sanitizer_syscall_post_impl_compat_13_sigpending13(res)
+#define __sanitizer_syscall_pre_compat_13_sigaltstack13(nss, oss)              \
+  __sanitizer_syscall_pre_impl_compat_13_sigaltstack13((long long)(nss),       \
+                                                       (long long)(oss))
+#define __sanitizer_syscall_post_compat_13_sigaltstack13(res, nss, oss)        \
+  __sanitizer_syscall_post_impl_compat_13_sigaltstack13(res, (long long)(nss), \
+                                                        (long long)(oss))
+#define __sanitizer_syscall_pre_ioctl(fd, com, data)                           \
+  __sanitizer_syscall_pre_impl_ioctl((long long)(fd), (long long)(com),        \
+                                     (long long)(data))
+#define __sanitizer_syscall_post_ioctl(res, fd, com, data)                     \
+  __sanitizer_syscall_post_impl_ioctl(res, (long long)(fd), (long long)(com),  \
+                                      (long long)(data))
+#define __sanitizer_syscall_pre_compat_12_oreboot(opt)                         \
+  __sanitizer_syscall_pre_impl_compat_12_oreboot((long long)(opt))
+#define __sanitizer_syscall_post_compat_12_oreboot(res, opt)                   \
+  __sanitizer_syscall_post_impl_compat_12_oreboot(res, (long long)(opt))
+#define __sanitizer_syscall_pre_revoke(path)                                   \
+  __sanitizer_syscall_pre_impl_revoke((long long)(path))
+#define __sanitizer_syscall_post_revoke(res, path)                             \
+  __sanitizer_syscall_post_impl_revoke(res, (long long)(path))
+#define __sanitizer_syscall_pre_symlink(path, link)                            \
+  __sanitizer_syscall_pre_impl_symlink((long long)(path), (long long)(link))
+#define __sanitizer_syscall_post_symlink(res, path, link)                      \
+  __sanitizer_syscall_post_impl_symlink(res, (long long)(path),                \
+                                        (long long)(link))
+#define __sanitizer_syscall_pre_readlink(path, buf, count)                     \
+  __sanitizer_syscall_pre_impl_readlink((long long)(path), (long long)(buf),   \
+                                        (long long)(count))
+#define __sanitizer_syscall_post_readlink(res, path, buf, count)               \
+  __sanitizer_syscall_post_impl_readlink(res, (long long)(path),               \
+                                         (long long)(buf), (long long)(count))
+#define __sanitizer_syscall_pre_execve(path, argp, envp)                       \
+  __sanitizer_syscall_pre_impl_execve((long long)(path), (long long)(argp),    \
+                                      (long long)(envp))
+#define __sanitizer_syscall_post_execve(res, path, argp, envp)                 \
+  __sanitizer_syscall_post_impl_execve(res, (long long)(path),                 \
+                                       (long long)(argp), (long long)(envp))
+#define __sanitizer_syscall_pre_umask(newmask)                                 \
+  __sanitizer_syscall_pre_impl_umask((long long)(newmask))
+#define __sanitizer_syscall_post_umask(res, newmask)                           \
+  __sanitizer_syscall_post_impl_umask(res, (long long)(newmask))
+#define __sanitizer_syscall_pre_chroot(path)                                   \
+  __sanitizer_syscall_pre_impl_chroot((long long)(path))
+#define __sanitizer_syscall_post_chroot(res, path)                             \
+  __sanitizer_syscall_post_impl_chroot(res, (long long)(path))
+#define __sanitizer_syscall_pre_compat_43_fstat43(fd, sb)                      \
+  __sanitizer_syscall_pre_impl_compat_43_fstat43((long long)(fd),              \
+                                                 (long long)(sb))
+#define __sanitizer_syscall_post_compat_43_fstat43(res, fd, sb)                \
+  __sanitizer_syscall_post_impl_compat_43_fstat43(res, (long long)(fd),        \
+                                                  (long long)(sb))
+#define __sanitizer_syscall_pre_compat_43_ogetkerninfo(op, where, size, arg)   \
+  __sanitizer_syscall_pre_impl_compat_43_ogetkerninfo(                         \
+      (long long)(op), (long long)(where), (long long)(size),                  \
+      (long long)(arg))
+#define __sanitizer_syscall_post_compat_43_ogetkerninfo(res, op, where, size,  \
+                                                        arg)                   \
+  __sanitizer_syscall_post_impl_compat_43_ogetkerninfo(                        \
+      res, (long long)(op), (long long)(where), (long long)(size),             \
+      (long long)(arg))
+#define __sanitizer_syscall_pre_compat_43_ogetpagesize()                       \
+  __sanitizer_syscall_pre_impl_compat_43_ogetpagesize()
+#define __sanitizer_syscall_post_compat_43_ogetpagesize(res)                   \
+  __sanitizer_syscall_post_impl_compat_43_ogetpagesize(res)
+#define __sanitizer_syscall_pre_compat_12_msync(addr, len)                     \
+  __sanitizer_syscall_pre_impl_compat_12_msync((long long)(addr),              \
+                                               (long long)(len))
+#define __sanitizer_syscall_post_compat_12_msync(res, addr, len)               \
+  __sanitizer_syscall_post_impl_compat_12_msync(res, (long long)(addr),        \
+                                                (long long)(len))
+#define __sanitizer_syscall_pre_vfork() __sanitizer_syscall_pre_impl_vfork()
+#define __sanitizer_syscall_post_vfork(res)                                    \
+  __sanitizer_syscall_post_impl_vfork(res)
+/* syscall 67 has been skipped */
+/* syscall 68 has been skipped */
+/* syscall 69 has been skipped */
+/* syscall 70 has been skipped */
+#define __sanitizer_syscall_pre_compat_43_ommap(addr, len, prot, flags, fd,    \
+                                                pos)                           \
+  __sanitizer_syscall_pre_impl_compat_43_ommap(                                \
+      (long long)(addr), (long long)(len), (long long)(prot),                  \
+      (long long)(flags), (long long)(fd), (long long)(pos))
+#define __sanitizer_syscall_post_compat_43_ommap(res, addr, len, prot, flags,  \
+                                                 fd, pos)                      \
+  __sanitizer_syscall_post_impl_compat_43_ommap(                               \
+      res, (long long)(addr), (long long)(len), (long long)(prot),             \
+      (long long)(flags), (long long)(fd), (long long)(pos))
+#define __sanitizer_syscall_pre_vadvise(anom)                                  \
+  __sanitizer_syscall_pre_impl_vadvise((long long)(anom))
+#define __sanitizer_syscall_post_vadvise(res, anom)                            \
+  __sanitizer_syscall_post_impl_vadvise(res, (long long)(anom))
+#define __sanitizer_syscall_pre_munmap(addr, len)                              \
+  __sanitizer_syscall_pre_impl_munmap((long long)(addr), (long long)(len))
+#define __sanitizer_syscall_post_munmap(res, addr, len)                        \
+  __sanitizer_syscall_post_impl_munmap(res, (long long)(addr), (long long)(len))
+#define __sanitizer_syscall_pre_mprotect(addr, len, prot)                      \
+  __sanitizer_syscall_pre_impl_mprotect((long long)(addr), (long long)(len),   \
+                                        (long long)(prot))
+#define __sanitizer_syscall_post_mprotect(res, addr, len, prot)                \
+  __sanitizer_syscall_post_impl_mprotect(res, (long long)(addr),               \
+                                         (long long)(len), (long long)(prot))
+#define __sanitizer_syscall_pre_madvise(addr, len, behav)                      \
+  __sanitizer_syscall_pre_impl_madvise((long long)(addr), (long long)(len),    \
+                                       (long long)(behav))
+#define __sanitizer_syscall_post_madvise(res, addr, len, behav)                \
+  __sanitizer_syscall_post_impl_madvise(res, (long long)(addr),                \
+                                        (long long)(len), (long long)(behav))
+/* syscall 76 has been skipped */
+/* syscall 77 has been skipped */
+#define __sanitizer_syscall_pre_mincore(addr, len, vec)                        \
+  __sanitizer_syscall_pre_impl_mincore((long long)(addr), (long long)(len),    \
+                                       (long long)(vec))
+#define __sanitizer_syscall_post_mincore(res, addr, len, vec)                  \
+  __sanitizer_syscall_post_impl_mincore(res, (long long)(addr),                \
+                                        (long long)(len), (long long)(vec))
+#define __sanitizer_syscall_pre_getgroups(gidsetsize, gidset)                  \
+  __sanitizer_syscall_pre_impl_getgroups((long long)(gidsetsize),              \
+                                         (long long)(gidset))
+#define __sanitizer_syscall_post_getgroups(res, gidsetsize, gidset)            \
+  __sanitizer_syscall_post_impl_getgroups(res, (long long)(gidsetsize),        \
+                                          (long long)(gidset))
+#define __sanitizer_syscall_pre_setgroups(gidsetsize, gidset)                  \
+  __sanitizer_syscall_pre_impl_setgroups((long long)(gidsetsize),              \
+                                         (long long)(gidset))
+#define __sanitizer_syscall_post_setgroups(res, gidsetsize, gidset)            \
+  __sanitizer_syscall_post_impl_setgroups(res, (long long)(gidsetsize),        \
+                                          (long long)(gidset))
+#define __sanitizer_syscall_pre_getpgrp() __sanitizer_syscall_pre_impl_getpgrp()
+#define __sanitizer_syscall_post_getpgrp(res)                                  \
+  __sanitizer_syscall_post_impl_getpgrp(res)
+#define __sanitizer_syscall_pre_setpgid(pid, pgid)                             \
+  __sanitizer_syscall_pre_impl_setpgid((long long)(pid), (long long)(pgid))
+#define __sanitizer_syscall_post_setpgid(res, pid, pgid)                       \
+  __sanitizer_syscall_post_impl_setpgid(res, (long long)(pid),                 \
+                                        (long long)(pgid))
+#define __sanitizer_syscall_pre_compat_50_setitimer(which, itv, oitv)          \
+  __sanitizer_syscall_pre_impl_compat_50_setitimer(                            \
+      (long long)(which), (long long)(itv), (long long)(oitv))
+#define __sanitizer_syscall_post_compat_50_setitimer(res, which, itv, oitv)    \
+  __sanitizer_syscall_post_impl_compat_50_setitimer(                           \
+      res, (long long)(which), (long long)(itv), (long long)(oitv))
+#define __sanitizer_syscall_pre_compat_43_owait()                              \
+  __sanitizer_syscall_pre_impl_compat_43_owait()
+#define __sanitizer_syscall_post_compat_43_owait(res)                          \
+  __sanitizer_syscall_post_impl_compat_43_owait(res)
+#define __sanitizer_syscall_pre_compat_12_oswapon(name)                        \
+  __sanitizer_syscall_pre_impl_compat_12_oswapon((long long)(name))
+#define __sanitizer_syscall_post_compat_12_oswapon(res, name)                  \
+  __sanitizer_syscall_post_impl_compat_12_oswapon(res, (long long)(name))
+#define __sanitizer_syscall_pre_compat_50_getitimer(which, itv)                \
+  __sanitizer_syscall_pre_impl_compat_50_getitimer((long long)(which),         \
+                                                   (long long)(itv))
+#define __sanitizer_syscall_post_compat_50_getitimer(res, which, itv)          \
+  __sanitizer_syscall_post_impl_compat_50_getitimer(res, (long long)(which),   \
+                                                    (long long)(itv))
+#define __sanitizer_syscall_pre_compat_43_ogethostname(hostname, len)          \
+  __sanitizer_syscall_pre_impl_compat_43_ogethostname((long long)(hostname),   \
+                                                      (long long)(len))
+#define __sanitizer_syscall_post_compat_43_ogethostname(res, hostname, len)    \
+  __sanitizer_syscall_post_impl_compat_43_ogethostname(                        \
+      res, (long long)(hostname), (long long)(len))
+#define __sanitizer_syscall_pre_compat_43_osethostname(hostname, len)          \
+  __sanitizer_syscall_pre_impl_compat_43_osethostname((long long)(hostname),   \
+                                                      (long long)(len))
+#define __sanitizer_syscall_post_compat_43_osethostname(res, hostname, len)    \
+  __sanitizer_syscall_post_impl_compat_43_osethostname(                        \
+      res, (long long)(hostname), (long long)(len))
+#define __sanitizer_syscall_pre_compat_43_ogetdtablesize()                     \
+  __sanitizer_syscall_pre_impl_compat_43_ogetdtablesize()
+#define __sanitizer_syscall_post_compat_43_ogetdtablesize(res)                 \
+  __sanitizer_syscall_post_impl_compat_43_ogetdtablesize(res)
+#define __sanitizer_syscall_pre_dup2(from, to)                                 \
+  __sanitizer_syscall_pre_impl_dup2((long long)(from), (long long)(to))
+#define __sanitizer_syscall_post_dup2(res, from, to)                           \
+  __sanitizer_syscall_post_impl_dup2(res, (long long)(from), (long long)(to))
+/* syscall 91 has been skipped */
+#define __sanitizer_syscall_pre_fcntl(fd, cmd, arg)                            \
+  __sanitizer_syscall_pre_impl_fcntl((long long)(fd), (long long)(cmd),        \
+                                     (long long)(arg))
+#define __sanitizer_syscall_post_fcntl(res, fd, cmd, arg)                      \
+  __sanitizer_syscall_post_impl_fcntl(res, (long long)(fd), (long long)(cmd),  \
+                                      (long long)(arg))
+#define __sanitizer_syscall_pre_compat_50_select(nd, in, ou, ex, tv)           \
+  __sanitizer_syscall_pre_impl_compat_50_select(                               \
+      (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex),      \
+      (long long)(tv))
+#define __sanitizer_syscall_post_compat_50_select(res, nd, in, ou, ex, tv)     \
+  __sanitizer_syscall_post_impl_compat_50_select(                              \
+      res, (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
+      (long long)(tv))
+/* syscall 94 has been skipped */
+#define __sanitizer_syscall_pre_fsync(fd)                                      \
+  __sanitizer_syscall_pre_impl_fsync((long long)(fd))
+#define __sanitizer_syscall_post_fsync(res, fd)                                \
+  __sanitizer_syscall_post_impl_fsync(res, (long long)(fd))
+#define __sanitizer_syscall_pre_setpriority(which, who, prio)                  \
+  __sanitizer_syscall_pre_impl_setpriority(                                    \
+      (long long)(which), (long long)(who), (long long)(prio))
+#define __sanitizer_syscall_post_setpriority(res, which, who, prio)            \
+  __sanitizer_syscall_post_impl_setpriority(                                   \
+      res, (long long)(which), (long long)(who), (long long)(prio))
+#define __sanitizer_syscall_pre_compat_30_socket(domain, type, protocol)       \
+  __sanitizer_syscall_pre_impl_compat_30_socket(                               \
+      (long long)(domain), (long long)(type), (long long)(protocol))
+#define __sanitizer_syscall_post_compat_30_socket(res, domain, type, protocol) \
+  __sanitizer_syscall_post_impl_compat_30_socket(                              \
+      res, (long long)(domain), (long long)(type), (long long)(protocol))
+#define __sanitizer_syscall_pre_connect(s, name, namelen)                      \
+  __sanitizer_syscall_pre_impl_connect((long long)(s), (long long)(name),      \
+                                       (long long)(namelen))
+#define __sanitizer_syscall_post_connect(res, s, name, namelen)                \
+  __sanitizer_syscall_post_impl_connect(                                       \
+      res, (long long)(s), (long long)(name), (long long)(namelen))
+#define __sanitizer_syscall_pre_compat_43_oaccept(s, name, anamelen)           \
+  __sanitizer_syscall_pre_impl_compat_43_oaccept(                              \
+      (long long)(s), (long long)(name), (long long)(anamelen))
+#define __sanitizer_syscall_post_compat_43_oaccept(res, s, name, anamelen)     \
+  __sanitizer_syscall_post_impl_compat_43_oaccept(                             \
+      res, (long long)(s), (long long)(name), (long long)(anamelen))
+#define __sanitizer_syscall_pre_getpriority(which, who)                        \
+  __sanitizer_syscall_pre_impl_getpriority((long long)(which), (long long)(who))
+#define __sanitizer_syscall_post_getpriority(res, which, who)                  \
+  __sanitizer_syscall_post_impl_getpriority(res, (long long)(which),           \
+                                            (long long)(who))
+#define __sanitizer_syscall_pre_compat_43_osend(s, buf, len, flags)            \
+  __sanitizer_syscall_pre_impl_compat_43_osend(                                \
+      (long long)(s), (long long)(buf), (long long)(len), (long long)(flags))
+#define __sanitizer_syscall_post_compat_43_osend(res, s, buf, len, flags)      \
+  __sanitizer_syscall_post_impl_compat_43_osend(                               \
+      res, (long long)(s), (long long)(buf), (long long)(len),                 \
+      (long long)(flags))
+#define __sanitizer_syscall_pre_compat_43_orecv(s, buf, len, flags)            \
+  __sanitizer_syscall_pre_impl_compat_43_orecv(                                \
+      (long long)(s), (long long)(buf), (long long)(len), (long long)(flags))
+#define __sanitizer_syscall_post_compat_43_orecv(res, s, buf, len, flags)      \
+  __sanitizer_syscall_post_impl_compat_43_orecv(                               \
+      res, (long long)(s), (long long)(buf), (long long)(len),                 \
+      (long long)(flags))
+#define __sanitizer_syscall_pre_compat_13_sigreturn13(sigcntxp)                \
+  __sanitizer_syscall_pre_impl_compat_13_sigreturn13((long long)(sigcntxp))
+#define __sanitizer_syscall_post_compat_13_sigreturn13(res, sigcntxp)          \
+  __sanitizer_syscall_post_impl_compat_13_sigreturn13(res,                     \
+                                                      (long long)(sigcntxp))
+#define __sanitizer_syscall_pre_bind(s, name, namelen)                         \
+  __sanitizer_syscall_pre_impl_bind((long long)(s), (long long)(name),         \
+                                    (long long)(namelen))
+#define __sanitizer_syscall_post_bind(res, s, name, namelen)                   \
+  __sanitizer_syscall_post_impl_bind(res, (long long)(s), (long long)(name),   \
+                                     (long long)(namelen))
+#define __sanitizer_syscall_pre_setsockopt(s, level, name, val, valsize)       \
+  __sanitizer_syscall_pre_impl_setsockopt((long long)(s), (long long)(level),  \
+                                          (long long)(name), (long long)(val), \
+                                          (long long)(valsize))
+#define __sanitizer_syscall_post_setsockopt(res, s, level, name, val, valsize) \
+  __sanitizer_syscall_post_impl_setsockopt(                                    \
+      res, (long long)(s), (long long)(level), (long long)(name),              \
+      (long long)(val), (long long)(valsize))
+#define __sanitizer_syscall_pre_listen(s, backlog)                             \
+  __sanitizer_syscall_pre_impl_listen((long long)(s), (long long)(backlog))
+#define __sanitizer_syscall_post_listen(res, s, backlog)                       \
+  __sanitizer_syscall_post_impl_listen(res, (long long)(s),                    \
+                                       (long long)(backlog))
+/* syscall 107 has been skipped */
+#define __sanitizer_syscall_pre_compat_43_osigvec(signum, nsv, osv)            \
+  __sanitizer_syscall_pre_impl_compat_43_osigvec(                              \
+      (long long)(signum), (long long)(nsv), (long long)(osv))
+#define __sanitizer_syscall_post_compat_43_osigvec(res, signum, nsv, osv)      \
+  __sanitizer_syscall_post_impl_compat_43_osigvec(                             \
+      res, (long long)(signum), (long long)(nsv), (long long)(osv))
+#define __sanitizer_syscall_pre_compat_43_osigblock(mask)                      \
+  __sanitizer_syscall_pre_impl_compat_43_osigblock((long long)(mask))
+#define __sanitizer_syscall_post_compat_43_osigblock(res, mask)                \
+  __sanitizer_syscall_post_impl_compat_43_osigblock(res, (long long)(mask))
+#define __sanitizer_syscall_pre_compat_43_osigsetmask(mask)                    \
+  __sanitizer_syscall_pre_impl_compat_43_osigsetmask((long long)(mask))
+#define __sanitizer_syscall_post_compat_43_osigsetmask(res, mask)              \
+  __sanitizer_syscall_post_impl_compat_43_osigsetmask(res, (long long)(mask))
+#define __sanitizer_syscall_pre_compat_13_sigsuspend13(mask)                   \
+  __sanitizer_syscall_pre_impl_compat_13_sigsuspend13((long long)(mask))
+#define __sanitizer_syscall_post_compat_13_sigsuspend13(res, mask)             \
+  __sanitizer_syscall_post_impl_compat_13_sigsuspend13(res, (long long)(mask))
+#define __sanitizer_syscall_pre_compat_43_osigstack(nss, oss)                  \
+  __sanitizer_syscall_pre_impl_compat_43_osigstack((long long)(nss),           \
+                                                   (long long)(oss))
+#define __sanitizer_syscall_post_compat_43_osigstack(res, nss, oss)            \
+  __sanitizer_syscall_post_impl_compat_43_osigstack(res, (long long)(nss),     \
+                                                    (long long)(oss))
+#define __sanitizer_syscall_pre_compat_43_orecvmsg(s, msg, flags)              \
+  __sanitizer_syscall_pre_impl_compat_43_orecvmsg(                             \
+      (long long)(s), (long long)(msg), (long long)(flags))
+#define __sanitizer_syscall_post_compat_43_orecvmsg(res, s, msg, flags)        \
+  __sanitizer_syscall_post_impl_compat_43_orecvmsg(                            \
+      res, (long long)(s), (long long)(msg), (long long)(flags))
+#define __sanitizer_syscall_pre_compat_43_osendmsg(s, msg, flags)              \
+  __sanitizer_syscall_pre_impl_compat_43_osendmsg(                             \
+      (long long)(s), (long long)(msg), (long long)(flags))
+#define __sanitizer_syscall_post_compat_43_osendmsg(res, s, msg, flags)        \
+  __sanitizer_syscall_post_impl_compat_43_osendmsg(                            \
+      res, (long long)(s), (long long)(msg), (long long)(flags))
+/* syscall 115 has been skipped */
+#define __sanitizer_syscall_pre_compat_50_gettimeofday(tp, tzp)                \
+  __sanitizer_syscall_pre_impl_compat_50_gettimeofday((long long)(tp),         \
+                                                      (long long)(tzp))
+#define __sanitizer_syscall_post_compat_50_gettimeofday(res, tp, tzp)          \
+  __sanitizer_syscall_post_impl_compat_50_gettimeofday(res, (long long)(tp),   \
+                                                       (long long)(tzp))
+#define __sanitizer_syscall_pre_compat_50_getrusage(who, rusage)               \
+  __sanitizer_syscall_pre_impl_compat_50_getrusage((long long)(who),           \
+                                                   (long long)(rusage))
+#define __sanitizer_syscall_post_compat_50_getrusage(res, who, rusage)         \
+  __sanitizer_syscall_post_impl_compat_50_getrusage(res, (long long)(who),     \
+                                                    (long long)(rusage))
+#define __sanitizer_syscall_pre_getsockopt(s, level, name, val, avalsize)      \
+  __sanitizer_syscall_pre_impl_getsockopt((long long)(s), (long long)(level),  \
+                                          (long long)(name), (long long)(val), \
+                                          (long long)(avalsize))
+#define __sanitizer_syscall_post_getsockopt(res, s, level, name, val,          \
+                                            avalsize)                          \
+  __sanitizer_syscall_post_impl_getsockopt(                                    \
+      res, (long long)(s), (long long)(level), (long long)(name),              \
+      (long long)(val), (long long)(avalsize))
+/* syscall 119 has been skipped */
+#define __sanitizer_syscall_pre_readv(fd, iovp, iovcnt)                        \
+  __sanitizer_syscall_pre_impl_readv((long long)(fd), (long long)(iovp),       \
+                                     (long long)(iovcnt))
+#define __sanitizer_syscall_post_readv(res, fd, iovp, iovcnt)                  \
+  __sanitizer_syscall_post_impl_readv(res, (long long)(fd), (long long)(iovp), \
+                                      (long long)(iovcnt))
+#define __sanitizer_syscall_pre_writev(fd, iovp, iovcnt)                       \
+  __sanitizer_syscall_pre_impl_writev((long long)(fd), (long long)(iovp),      \
+                                      (long long)(iovcnt))
+#define __sanitizer_syscall_post_writev(res, fd, iovp, iovcnt)                 \
+  __sanitizer_syscall_post_impl_writev(res, (long long)(fd),                   \
+                                       (long long)(iovp), (long long)(iovcnt))
+#define __sanitizer_syscall_pre_compat_50_settimeofday(tv, tzp)                \
+  __sanitizer_syscall_pre_impl_compat_50_settimeofday((long long)(tv),         \
+                                                      (long long)(tzp))
+#define __sanitizer_syscall_post_compat_50_settimeofday(res, tv, tzp)          \
+  __sanitizer_syscall_post_impl_compat_50_settimeofday(res, (long long)(tv),   \
+                                                       (long long)(tzp))
+#define __sanitizer_syscall_pre_fchown(fd, uid, gid)                           \
+  __sanitizer_syscall_pre_impl_fchown((long long)(fd), (long long)(uid),       \
+                                      (long long)(gid))
+#define __sanitizer_syscall_post_fchown(res, fd, uid, gid)                     \
+  __sanitizer_syscall_post_impl_fchown(res, (long long)(fd), (long long)(uid), \
+                                       (long long)(gid))
+#define __sanitizer_syscall_pre_fchmod(fd, mode)                               \
+  __sanitizer_syscall_pre_impl_fchmod((long long)(fd), (long long)(mode))
+#define __sanitizer_syscall_post_fchmod(res, fd, mode)                         \
+  __sanitizer_syscall_post_impl_fchmod(res, (long long)(fd), (long long)(mode))
+#define __sanitizer_syscall_pre_compat_43_orecvfrom(s, buf, len, flags, from,  \
+                                                    fromlenaddr)               \
+  __sanitizer_syscall_pre_impl_compat_43_orecvfrom(                            \
+      (long long)(s), (long long)(buf), (long long)(len), (long long)(flags),  \
+      (long long)(from), (long long)(fromlenaddr))
+#define __sanitizer_syscall_post_compat_43_orecvfrom(res, s, buf, len, flags,  \
+                                                     from, fromlenaddr)        \
+  __sanitizer_syscall_post_impl_compat_43_orecvfrom(                           \
+      res, (long long)(s), (long long)(buf), (long long)(len),                 \
+      (long long)(flags), (long long)(from), (long long)(fromlenaddr))
+#define __sanitizer_syscall_pre_setreuid(ruid, euid)                           \
+  __sanitizer_syscall_pre_impl_setreuid((long long)(ruid), (long long)(euid))
+#define __sanitizer_syscall_post_setreuid(res, ruid, euid)                     \
+  __sanitizer_syscall_post_impl_setreuid(res, (long long)(ruid),               \
+                                         (long long)(euid))
+#define __sanitizer_syscall_pre_setregid(rgid, egid)                           \
+  __sanitizer_syscall_pre_impl_setregid((long long)(rgid), (long long)(egid))
+#define __sanitizer_syscall_post_setregid(res, rgid, egid)                     \
+  __sanitizer_syscall_post_impl_setregid(res, (long long)(rgid),               \
+                                         (long long)(egid))
+#define __sanitizer_syscall_pre_rename(from, to)                               \
+  __sanitizer_syscall_pre_impl_rename((long long)(from), (long long)(to))
+#define __sanitizer_syscall_post_rename(res, from, to)                         \
+  __sanitizer_syscall_post_impl_rename(res, (long long)(from), (long long)(to))
+#define __sanitizer_syscall_pre_compat_43_otruncate(path, length)              \
+  __sanitizer_syscall_pre_impl_compat_43_otruncate((long long)(path),          \
+                                                   (long long)(length))
+#define __sanitizer_syscall_post_compat_43_otruncate(res, path, length)        \
+  __sanitizer_syscall_post_impl_compat_43_otruncate(res, (long long)(path),    \
+                                                    (long long)(length))
+#define __sanitizer_syscall_pre_compat_43_oftruncate(fd, length)               \
+  __sanitizer_syscall_pre_impl_compat_43_oftruncate((long long)(fd),           \
+                                                    (long long)(length))
+#define __sanitizer_syscall_post_compat_43_oftruncate(res, fd, length)         \
+  __sanitizer_syscall_post_impl_compat_43_oftruncate(res, (long long)(fd),     \
+                                                     (long long)(length))
+#define __sanitizer_syscall_pre_flock(fd, how)                                 \
+  __sanitizer_syscall_pre_impl_flock((long long)(fd), (long long)(how))
+#define __sanitizer_syscall_post_flock(res, fd, how)                           \
+  __sanitizer_syscall_post_impl_flock(res, (long long)(fd), (long long)(how))
+#define __sanitizer_syscall_pre_mkfifo(path, mode)                             \
+  __sanitizer_syscall_pre_impl_mkfifo((long long)(path), (long long)(mode))
+#define __sanitizer_syscall_post_mkfifo(res, path, mode)                       \
+  __sanitizer_syscall_post_impl_mkfifo(res, (long long)(path),                 \
+                                       (long long)(mode))
+#define __sanitizer_syscall_pre_sendto(s, buf, len, flags, to, tolen)          \
+  __sanitizer_syscall_pre_impl_sendto((long long)(s), (long long)(buf),        \
+                                      (long long)(len), (long long)(flags),    \
+                                      (long long)(to), (long long)(tolen))
+#define __sanitizer_syscall_post_sendto(res, s, buf, len, flags, to, tolen)    \
+  __sanitizer_syscall_post_impl_sendto(res, (long long)(s), (long long)(buf),  \
+                                       (long long)(len), (long long)(flags),   \
+                                       (long long)(to), (long long)(tolen))
+#define __sanitizer_syscall_pre_shutdown(s, how)                               \
+  __sanitizer_syscall_pre_impl_shutdown((long long)(s), (long long)(how))
+#define __sanitizer_syscall_post_shutdown(res, s, how)                         \
+  __sanitizer_syscall_post_impl_shutdown(res, (long long)(s), (long long)(how))
+#define __sanitizer_syscall_pre_socketpair(domain, type, protocol, rsv)        \
+  __sanitizer_syscall_pre_impl_socketpair(                                     \
+      (long long)(domain), (long long)(type), (long long)(protocol),           \
+      (long long)(rsv))
+#define __sanitizer_syscall_post_socketpair(res, domain, type, protocol, rsv)  \
+  __sanitizer_syscall_post_impl_socketpair(                                    \
+      res, (long long)(domain), (long long)(type), (long long)(protocol),      \
+      (long long)(rsv))
+#define __sanitizer_syscall_pre_mkdir(path, mode)                              \
+  __sanitizer_syscall_pre_impl_mkdir((long long)(path), (long long)(mode))
+#define __sanitizer_syscall_post_mkdir(res, path, mode)                        \
+  __sanitizer_syscall_post_impl_mkdir(res, (long long)(path), (long long)(mode))
+#define __sanitizer_syscall_pre_rmdir(path)                                    \
+  __sanitizer_syscall_pre_impl_rmdir((long long)(path))
+#define __sanitizer_syscall_post_rmdir(res, path)                              \
+  __sanitizer_syscall_post_impl_rmdir(res, (long long)(path))
+#define __sanitizer_syscall_pre_compat_50_utimes(path, tptr)                   \
+  __sanitizer_syscall_pre_impl_compat_50_utimes((long long)(path),             \
+                                                (long long)(tptr))
+#define __sanitizer_syscall_post_compat_50_utimes(res, path, tptr)             \
+  __sanitizer_syscall_post_impl_compat_50_utimes(res, (long long)(path),       \
+                                                 (long long)(tptr))
+/* syscall 139 has been skipped */
+#define __sanitizer_syscall_pre_compat_50_adjtime(delta, olddelta)             \
+  __sanitizer_syscall_pre_impl_compat_50_adjtime((long long)(delta),           \
+                                                 (long long)(olddelta))
+#define __sanitizer_syscall_post_compat_50_adjtime(res, delta, olddelta)       \
+  __sanitizer_syscall_post_impl_compat_50_adjtime(res, (long long)(delta),     \
+                                                  (long long)(olddelta))
+#define __sanitizer_syscall_pre_compat_43_ogetpeername(fdes, asa, alen)        \
+  __sanitizer_syscall_pre_impl_compat_43_ogetpeername(                         \
+      (long long)(fdes), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_post_compat_43_ogetpeername(res, fdes, asa, alen)  \
+  __sanitizer_syscall_post_impl_compat_43_ogetpeername(                        \
+      res, (long long)(fdes), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_pre_compat_43_ogethostid()                         \
+  __sanitizer_syscall_pre_impl_compat_43_ogethostid()
+#define __sanitizer_syscall_post_compat_43_ogethostid(res)                     \
+  __sanitizer_syscall_post_impl_compat_43_ogethostid(res)
+#define __sanitizer_syscall_pre_compat_43_osethostid(hostid)                   \
+  __sanitizer_syscall_pre_impl_compat_43_osethostid((long long)(hostid))
+#define __sanitizer_syscall_post_compat_43_osethostid(res, hostid)             \
+  __sanitizer_syscall_post_impl_compat_43_osethostid(res, (long long)(hostid))
+#define __sanitizer_syscall_pre_compat_43_ogetrlimit(which, rlp)               \
+  __sanitizer_syscall_pre_impl_compat_43_ogetrlimit((long long)(which),        \
+                                                    (long long)(rlp))
+#define __sanitizer_syscall_post_compat_43_ogetrlimit(res, which, rlp)         \
+  __sanitizer_syscall_post_impl_compat_43_ogetrlimit(res, (long long)(which),  \
+                                                     (long long)(rlp))
+#define __sanitizer_syscall_pre_compat_43_osetrlimit(which, rlp)               \
+  __sanitizer_syscall_pre_impl_compat_43_osetrlimit((long long)(which),        \
+                                                    (long long)(rlp))
+#define __sanitizer_syscall_post_compat_43_osetrlimit(res, which, rlp)         \
+  __sanitizer_syscall_post_impl_compat_43_osetrlimit(res, (long long)(which),  \
+                                                     (long long)(rlp))
+#define __sanitizer_syscall_pre_compat_43_okillpg(pgid, signum)                \
+  __sanitizer_syscall_pre_impl_compat_43_okillpg((long long)(pgid),            \
+                                                 (long long)(signum))
+#define __sanitizer_syscall_post_compat_43_okillpg(res, pgid, signum)          \
+  __sanitizer_syscall_post_impl_compat_43_okillpg(res, (long long)(pgid),      \
+                                                  (long long)(signum))
+#define __sanitizer_syscall_pre_setsid() __sanitizer_syscall_pre_impl_setsid()
+#define __sanitizer_syscall_post_setsid(res)                                   \
+  __sanitizer_syscall_post_impl_setsid(res)
+#define __sanitizer_syscall_pre_compat_50_quotactl(path, cmd, uid, arg)        \
+  __sanitizer_syscall_pre_impl_compat_50_quotactl(                             \
+      (long long)(path), (long long)(cmd), (long long)(uid), (long long)(arg))
+#define __sanitizer_syscall_post_compat_50_quotactl(res, path, cmd, uid, arg)  \
+  __sanitizer_syscall_post_impl_compat_50_quotactl(                            \
+      res, (long long)(path), (long long)(cmd), (long long)(uid),              \
+      (long long)(arg))
+#define __sanitizer_syscall_pre_compat_43_oquota()                             \
+  __sanitizer_syscall_pre_impl_compat_43_oquota()
+#define __sanitizer_syscall_post_compat_43_oquota(res)                         \
+  __sanitizer_syscall_post_impl_compat_43_oquota(res)
+#define __sanitizer_syscall_pre_compat_43_ogetsockname(fdec, asa, alen)        \
+  __sanitizer_syscall_pre_impl_compat_43_ogetsockname(                         \
+      (long long)(fdec), (long long)(asa), (long long)(alen))
+#define __sanitizer_syscall_post_compat_43_ogetsockname(res, fdec, asa, alen)  \
+  __sanitizer_syscall_post_impl_compat_43_ogetsockname(                        \
+      res, (long long)(fdec), (long long)(asa), (long long)(alen))
+/* syscall 151 has been skipped */
+/* syscall 152 has been skipped */
+/* syscall 153 has been skipped */
+/* syscall 154 has been skipped */
+#define __sanitizer_syscall_pre_nfssvc(flag, argp)                             \

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


More information about the svn-src-all mailing list