Linux/linux fbfb6bdDocumentation/devicetree/bindings/thermal st,thermal-spear1340.yaml spear-thermal.txt, drivers/thermal thermal_core.c thermal_of.c

Merge tag 'thermal-7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull thermal control updates from Rafael Wysocki:
 "These include thermal core fixes and simplifications, driver fixes and
  new hardware support (SDM670, Eliza SoC), new driver features (hwmon
  support in imx91, DDR data rate on Nova Lake in int340x), and a
  handful of cleanups:

   - Fix thermal core issues related to thermal zone removal and
     registration errors that may lead to a use-after-free or a memory
     leak in some cases (Rafael Wysocki)

   - Drop a redundant check from thermal_zone_device_update(), adjust
     thermal workqueue allocation flags, and switch over thermal_class
     allocation to static (Rafael Wysocki)

   - Relocate the suspend and resume of thermal zones closer to the
     suspend and resume of devices, respectively (Rafael Wysocki)


    [62 lines not shown]
DeltaFile
+44-79drivers/thermal/thermal_core.c
+36-0Documentation/devicetree/bindings/thermal/st,thermal-spear1340.yaml
+20-5drivers/thermal/intel/int340x_thermal/processor_thermal_rfim.c
+10-10drivers/thermal/thermal_of.c
+0-14Documentation/devicetree/bindings/thermal/spear-thermal.txt
+3-5drivers/thermal/broadcom/brcmstb_thermal.c
+113-11311 files not shown
+144-12417 files

Linux/linux d7c8087drivers/cpufreq amd-pstate.c amd-pstate-ut.c, drivers/devfreq devfreq.c

Merge tag 'pm-7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management updates from Rafael Wysocki:
 "Once again, cpufreq is the most active development area, mostly
  because of the new feature additions and documentation updates in the
  amd-pstate driver, but there are also changes in the cpufreq core
  related to boost support and other assorted updates elsewhere.

  Next up are power capping changes due to the major cleanup of the
  Intel RAPL driver.

  On the cpuidle front, a new C-states table for Intel Panther Lake is
  added to the intel_idle driver, the stopped tick handling in the menu
  and teo governors is updated, and there are a couple of cleanups.

  Apart from the above, support for Tegra114 is added to devfreq and
  there are assorted cleanups of that code, there are also two updates
  of the operating performance points (OPP) library, two minor updates
  related to hibernation, and cpupower utility man pages updates and

    [121 lines not shown]
DeltaFile
+543-84drivers/cpufreq/amd-pstate.c
+41-522drivers/powercap/intel_rapl_common.c
+365-28drivers/powercap/intel_rapl_msr.c
+273-6drivers/cpufreq/amd-pstate-ut.c
+62-46drivers/devfreq/devfreq.c
+101-0drivers/powercap/intel_rapl_tpmi.c
+1,385-68652 files not shown
+1,950-90258 files

LLVM/project 2874480mlir/docs/Bindings Python.md, mlir/python/mlir/dialects ext.py

[MLIR][Python] Migrate `result(infer_type=True)` to a new field specifier (#191849)

Currrently the signature of `result(..)` is:
```python
result(*, infer_type: bool = False, default_factory: Callable[[], Any] | None = None, kw_only: bool = False) -> Result
```

so when users use `result(infer_type=True)`, the type checkers will
still get `kw_only=False` (from the signature), but actually the
`kw_only` should be `True` (it should follow the value of `infer_type`).
users can use `result(infer_type=True, kw_only=True)` but it's
unnecessarily verbose.

So it may introduce an incompatibility when we start to use
`dataclass_transform`. currently it's fine because we just don't use
`dataclass_transform`. But when we use, we may require a breaking
change.

This PR migrates such use to a new field specifier named
`infer_result()`.
DeltaFile
+14-8mlir/python/mlir/dialects/ext.py
+8-8mlir/test/python/dialects/ext.py
+5-5mlir/test/python/dialects/transform_op_interface.py
+3-3mlir/test/python/integration/dialects/bf.py
+2-2mlir/docs/Bindings/Python.md
+32-265 files

LLVM/project 12f636dlibclc/cmake/modules CMakeCLCInformation.cmake CMakeDetermineCLCCompiler.cmake

Revert "[libclc][CMake] Use clang/llvm-ar on Windows (#186726)" (#191745)

This reverts commit 4abb927bacf37f18f6359a41639a6d1b3bffffb5.

The code is not needed since 121f5a96ff38 because the C compiler is now
always just-built clang in in-tree build. In addition, CMAKE_AR is
llvm-ar and CMAKE_RANLIB is llvm-ranlib.
DeltaFile
+3-21libclc/cmake/modules/CMakeCLCInformation.cmake
+1-16libclc/cmake/modules/CMakeDetermineCLCCompiler.cmake
+4-372 files

LLVM/project aab5c10openmp/device/include Synchronization.h

[Offload] Revert part of #187138. Workaround #191910 (#191925)

Closes #191910

---------

Co-authored-by: Joseph Huber <huberjn at outlook.com>
DeltaFile
+5-0openmp/device/include/Synchronization.h
+5-01 files

FreeBSD/ports 11eab90net-mgmt/etherape distinfo Makefile

net-mgmt/etherape: Update 0.9.21 => 0.9.22

Changelog:
* Cleanups of capture code.
* Clear address cache command, thanks to Ronald W. Henderson.
* Avoid multiple close event, by Ronald W. Henderson.
* Saving window size in preferences dialog, by Ronald W. Henderson.
* F11 to make EtherApe fullscreen, by Ronald W. Henderson.
* New georgian translation, thanks to Temuri Doghonadze.
* Documentation improvments, thanks to Ronald W. Henderson.
* IP unknown protocols display now subject to the 'unknown ports' setting.
* Smaller improvements and fixes.
* One can now export Etherape data to JSON as well as XML.
* Export file format is selected in the Preferences dialog.
* Export menu entry icon added.
* Updated Preferences dialog help and figures.
* Man page updates.
* XML escaping extended.
* Fix for text appearance in these pull downs: Central Node and Capture filter.

    [8 lines not shown]
DeltaFile
+3-3net-mgmt/etherape/distinfo
+1-1net-mgmt/etherape/Makefile
+1-0net-mgmt/etherape/pkg-plist
+5-43 files

LLVM/project 5b4ee2eclang/lib/Sema SemaTemplate.cpp, clang/test/AST ast-dump-template-decls-json.cpp ast-dump-decl-context-json.cpp

[clang] fix some places where used decls were not marked as referenced
DeltaFile
+272-267clang/test/AST/ast-dump-template-decls-json.cpp
+31-28clang/test/AST/ast-dump-decl-context-json.cpp
+12-12clang/test/AST/ast-dump-decl.cpp
+18-0clang/test/AST/ast-dump-templates.cpp
+14-3clang/lib/Sema/SemaTemplate.cpp
+4-4clang/test/SemaTemplate/make_integer_seq.cpp
+351-31422 files not shown
+388-35528 files

Linux/linux 2e31b16drivers/acpi acpi_tad.c cppc_acpi.c, drivers/acpi/apei ghes-nvidia.c

Merge tag 'acpi-7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI support updates from Rafael Wysocki:
 "These include an update of the CMOS RTC driver and the related ACPI
  and x86 code that, among other things, switches it over to using the
  platform device interface for device binding on x86 instead of the PNP
  device driver interface (which allows the code in question to be
  simplified quite a bit), a major update of the ACPI Time and Alarm
  Device (TAD) driver adding an RTC class device interface to it, and
  updates of core ACPI drivers that remove some unnecessary and not
  really useful code from them.

  Apart from that, two drivers are converted to using the platform
  driver interface for device binding instead of the ACPI driver one,
  which is slated for removal, support for the Performance Limited
  register is added to the ACPI CPPC library and there are some
  janitorial updates of it and the related cpufreq CPPC driver, the ACPI
  processor driver is fixed and cleaned up, and NVIDIA vendor CPER
  record handler is added to the APEI GHES code.

    [120 lines not shown]
DeltaFile
+345-149drivers/acpi/acpi_tad.c
+247-46drivers/acpi/cppc_acpi.c
+149-0drivers/acpi/apei/ghes-nvidia.c
+32-113drivers/rtc/rtc-cmos.c
+92-12drivers/cpufreq/cppc_cpufreq.c
+46-54drivers/acpi/acpi_video.c
+911-37463 files not shown
+1,458-77469 files

LLVM/project 51e31d3llvm/lib/Target/AMDGPU AMDGPULowerModuleLDSPass.cpp, llvm/test/CodeGen/AMDGPU lower-module-lds-link-time-classify.ll lower-module-lds-link-time-multi-kernel.ll

[AMDGPU] Add object linking support for LDS and named barrier lowering in the middle end

This is the first patch in a series introducing object linking support for
AMDGPU.

This PR adds the -amdgpu-enable-object-linking flag to enable object linking in
the backend. It also updates the AMDGPULowerModuleLDSPass and
AMDGPULowerExecSync passes to support lowering LDS and named barrier globals
when object linking is enabled.
DeltaFile
+163-0llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp
+73-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-classify.ll
+62-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-multi-kernel.ll
+52-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-multi-lds-per-func.ll
+50-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-internal-multi-user.ll
+50-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-transitive.ll
+450-06 files not shown
+625-012 files

LLVM/project 5753b3fllvm/lib/Target/AMDGPU AMDGPULowerIntrinsics.cpp, llvm/test/CodeGen/AMDGPU lower-intrinsics-noalias-metadata.ll

[AMDGPU] Preserve metadata in all barrier lowering paths (#191916)

Extend copyMetadata to every call-to-call replacement in
AMDGPULowerIntrinsics, not just the single-wave s_barrier →
wave_barrier path. This covers:
- s_cluster_barrier → wave_barrier (single-wave)
- s_cluster_barrier → signal_isfirst + wait + signal + wait (multi-wave)
- s_barrier → signal + wait (split barriers)

Add GFX11 and GFX12 RUN lines and test functions for all lowering
paths to verify metadata preservation.

Made-with: Cursor
DeltaFile
+152-14llvm/test/CodeGen/AMDGPU/lower-intrinsics-noalias-metadata.ll
+12-6llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
+164-202 files

LLVM/project 5b2ebe4llvm/lib/Target/AMDGPU AMDGPULowerModuleLDSPass.cpp, llvm/test/CodeGen/AMDGPU lower-module-lds-link-time-classify.ll lower-module-lds-link-time-multi-kernel.ll

[AMDGPU] Add object linking support for LDS and named barrier lowering in the middle end

This is the first patch in a series introducing object linking support for
AMDGPU.

This PR adds the -amdgpu-enable-object-linking flag to enable object linking in
the backend. It also updates the AMDGPULowerModuleLDSPass and
AMDGPULowerExecSync passes to support lowering LDS and named barrier globals
when object linking is enabled.
DeltaFile
+163-0llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp
+73-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-classify.ll
+62-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-multi-kernel.ll
+52-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-multi-lds-per-func.ll
+50-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-internal-multi-user.ll
+50-0llvm/test/CodeGen/AMDGPU/lower-module-lds-link-time-transitive.ll
+450-06 files not shown
+626-012 files

Linux/linux 4793daedrivers/base devres.c, rust/kernel io.rs devres.rs

Merge tag 'driver-core-7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core

Pull driver core updates from Danilo Krummrich:
 "debugfs:
   - Fix NULL pointer dereference in debugfs_create_str()
   - Fix misplaced EXPORT_SYMBOL_GPL for debugfs_create_str()
   - Fix soundwire debugfs NULL pointer dereference from uninitialized
     firmware_file

  device property:
   - Make fwnode flags modifications thread safe; widen the field to
     unsigned long and use set_bit() / clear_bit() based accessors
   - Document how to check for the property presence

  devres:
   - Separate struct devres_node from its "subclasses" (struct devres,
     struct devres_group); give struct devres_node its own release and
     free callbacks for per-type dispatch
   - Introduce struct devres_action for devres actions, avoiding the

    [157 lines not shown]
DeltaFile
+1,260-0rust/kernel/io/register.rs
+491-291rust/kernel/io.rs
+185-96drivers/base/devres.c
+139-46rust/kernel/devres.rs
+112-0tools/testing/selftests/cgroup/test_memcontrol.c
+30-69rust/kernel/pci/io.rs
+2,217-50262 files not shown
+2,847-1,02268 files

FreeBSD/ports 68ee8fdeditors/neovim Makefile distinfo

editors/neovim: Update to 0.12.1

Changes:
https://github.com/neovim/neovim/commit/7ac5a26d5633a41d7e291141488ca635242973a5

Restrict tests to unittest target while functionaltest target fails

Reviewed by:    thierry (mentor)
Approved by:    thierry (mentor)
Differential Revision:  https://reviews.freebsd.org/D56359
DeltaFile
+4-3editors/neovim/Makefile
+3-3editors/neovim/distinfo
+7-62 files

FreeBSD/ports 63a7b4cnet/mpich Makefile pkg-plist

net/mpich: Update to 5.0.1

Changes: https://www.mpich.org/2026/04/10/mpich-5-0-1-released/

Fix Process Manager logic
Fix PLIST_SUB logic
Fix Makefile format with portfmt

Reviewed by:    thierry (mentor)
Approved by:    thierry (mentor)
Differential Revision:  https://reviews.freebsd.org/D56358
DeltaFile
+53-51net/mpich/Makefile
+4-4net/mpich/pkg-plist
+3-3net/mpich/distinfo
+60-583 files

LLVM/project bfff42clibcxx/test/std/utilities/format/format.functions format.locale.runtime_format.pass.cpp format.locale.dynamic_format.pass.cpp, libcxx/test/std/utilities/format/format.syn runtime_format_string.pass.cpp dynamic_format_string.pass.cpp

Revert "[libc++][format] P3953R3: Rename `std::runtime_format` (#189657)" (#191912)

This reverts commit 67c893eebc793cea8b0d12b9037d3117191b76eb due to
buildbot breakage

(https://github.com/llvm/llvm-project/pull/189657#issuecomment-4231358706,
https://github.com/llvm/llvm-project/pull/189657#issuecomment-4239964862).
DeltaFile
+86-0libcxx/test/std/utilities/format/format.functions/format.locale.runtime_format.pass.cpp
+0-86libcxx/test/std/utilities/format/format.functions/format.locale.dynamic_format.pass.cpp
+0-84libcxx/test/std/utilities/format/format.functions/format.dynamic_format.pass.cpp
+84-0libcxx/test/std/utilities/format/format.functions/format.runtime_format.pass.cpp
+70-0libcxx/test/std/utilities/format/format.syn/runtime_format_string.pass.cpp
+0-70libcxx/test/std/utilities/format/format.syn/dynamic_format_string.pass.cpp
+240-2408 files not shown
+299-30114 files

FreeBSD/ports d5bfb6edeskutils/taskwarrior-tui distinfo Makefile.crates

deskutils/taskwarrior-tui: Update to 0.27.0

Changelog:
https://github.com/kdheepak/taskwarrior-tui/releases/tag/v0.27.0

Reviewed by:    thierry (mentor)
Approved by:    thierry (mentor)
Differential Revision:  https://reviews.freebsd.org/D56363
DeltaFile
+247-255deskutils/taskwarrior-tui/distinfo
+122-126deskutils/taskwarrior-tui/Makefile.crates
+1-1deskutils/taskwarrior-tui/Makefile
+370-3823 files

FreeBSD/src 8de7c76contrib/ncurses configure aclocal.m4, contrib/ncurses/doc/html ncurses-intro.html

ncurses: merge update to ncurses 6.6

6.6 is ABI compatible with 6.5 (tested with abidiff)
Remove html documentation to ease updates

MFC After:      1 month

(cherry picked from commit 68ad2b0d7af2a3571c4abac9afa712f9b09b721c)
DeltaFile
+15,906-15,332contrib/ncurses/configure
+2,456-1,968contrib/ncurses/misc/terminfo.src
+0-3,390contrib/ncurses/doc/html/ncurses-intro.html
+0-2,282contrib/ncurses/ncurses/win32con/win_driver.c
+853-527contrib/ncurses/aclocal.m4
+639-518contrib/ncurses/announce.html.in
+19,854-24,017411 files not shown
+40,960-36,365417 files

LLVM/project c9075f7compiler-rt/lib/hwasan hwasan_allocator.cpp hwasan_flags.inc, compiler-rt/test/hwasan/TestCases tag_mask_smoke.c

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+22-3compiler-rt/lib/hwasan/hwasan_allocator.cpp
+21-0compiler-rt/test/hwasan/TestCases/tag_mask_smoke.c
+3-0compiler-rt/lib/hwasan/hwasan_flags.inc
+46-33 files

LLVM/project 02c090ccompiler-rt/lib/hwasan hwasan_allocator.cpp hwasan_poisoning.cpp, compiler-rt/test/hwasan/TestCases tag_mask_smoke.c

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+24-3compiler-rt/lib/hwasan/hwasan_allocator.cpp
+21-0compiler-rt/test/hwasan/TestCases/tag_mask_smoke.c
+5-2compiler-rt/lib/hwasan/hwasan_poisoning.cpp
+3-0compiler-rt/lib/hwasan/hwasan_flags.inc
+1-0compiler-rt/lib/hwasan/hwasan.h
+54-55 files

LLVM/project 04f048bcompiler-rt/lib/hwasan hwasan_allocator.cpp hwasan.h

upd

Created using spr 1.3.7
DeltaFile
+0-2compiler-rt/lib/hwasan/hwasan_allocator.cpp
+0-1compiler-rt/lib/hwasan/hwasan.h
+0-32 files

LLVM/project 84ba76bcompiler-rt/lib/hwasan hwasan_poisoning.cpp

upd

Created using spr 1.3.7
DeltaFile
+2-6compiler-rt/lib/hwasan/hwasan_poisoning.cpp
+2-61 files

LLVM/project a0d49bccompiler-rt/lib/hwasan hwasan_poisoning.cpp

fmt

Created using spr 1.3.7
DeltaFile
+3-2compiler-rt/lib/hwasan/hwasan_poisoning.cpp
+3-21 files

LLVM/project 36e9361compiler-rt/lib/hwasan hwasan_poisoning.cpp

fix

Created using spr 1.3.7
DeltaFile
+3-1compiler-rt/lib/hwasan/hwasan_poisoning.cpp
+3-11 files

Linux/linux d568788arch/loongarch/kernel syscall.c, arch/powerpc/kernel syscall.c

Merge tag 'hardening-v7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull hardening updates from Kees Cook:

 - randomize_kstack: Improve implementation across arches (Ryan Roberts)

 - lkdtm/fortify: Drop unneeded FORTIFY_STR_OBJECT test

 - refcount: Remove unused __signed_wrap function annotations

* tag 'hardening-v7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
  lkdtm/fortify: Drop unneeded FORTIFY_STR_OBJECT test
  refcount: Remove unused __signed_wrap function annotations
  randomize_kstack: Unify random source across arches
  randomize_kstack: Maintain kstack_offset per task
DeltaFile
+20-34include/linux/randomize_kstack.h
+6-30drivers/misc/lkdtm/fortify.c
+2-14arch/powerpc/kernel/syscall.c
+0-12arch/riscv/kernel/traps.c
+0-12arch/x86/include/asm/entry-common.h
+0-11arch/loongarch/kernel/syscall.c
+28-11311 files not shown
+49-15417 files

Linux/linux cea4a90tools/testing/selftests/seccomp seccomp_bpf.c

Merge tag 'seccomp-v7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull seccomp update from Kees Cook:

 - selftests: Add hard-coded __NR_uprobe for x86_64 (Oleg Nesterov)

* tag 'seccomp-v7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
  selftests/seccomp: Add hard-coded __NR_uprobe for x86_64
DeltaFile
+6-0tools/testing/selftests/seccomp/seccomp_bpf.c
+6-01 files

Linux/linux 613b48bfs exec.c, include/linux sched.h

Merge tag 'execve-v7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull execve updates from Kees Cook:

 - use strnlen() in __set_task_comm (Thorsten Blum)

 - update task_struct->comm comment (Thorsten Blum)

* tag 'execve-v7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
  sched: update task_struct->comm comment
  exec: use strnlen() in __set_task_comm
DeltaFile
+3-6include/linux/sched.h
+1-1fs/exec.c
+4-72 files

LLVM/project 5612275lldb/include/lldb/Target Process.h, lldb/source/Plugins/DynamicLoader/MacOSX-DYLD DynamicLoaderMacOS.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+75-30lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
+66-2lldb/tools/debugserver/source/RNBRemote.cpp
+36-5lldb/include/lldb/Target/Process.h
+39-0llvm/test/CodeGen/AMDGPU/lower-intrinsics-noalias-metadata.ll
+19-14lldb/tools/debugserver/source/MacOSX/MachProcess.mm
+29-1lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+264-5212 files not shown
+362-7818 files

LLVM/project 917d1b4lldb/include/lldb/Target Process.h, lldb/source/Plugins/DynamicLoader/MacOSX-DYLD DynamicLoaderMacOS.cpp

rebase

Created using spr 1.3.7
DeltaFile
+75-30lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
+66-2lldb/tools/debugserver/source/RNBRemote.cpp
+36-5lldb/include/lldb/Target/Process.h
+39-0llvm/test/CodeGen/AMDGPU/lower-intrinsics-noalias-metadata.ll
+19-14lldb/tools/debugserver/source/MacOSX/MachProcess.mm
+29-1lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+264-5212 files not shown
+362-7818 files

LLVM/project 4f1b776lldb/include/lldb/Target Process.h, lldb/source/Plugins/DynamicLoader/MacOSX-DYLD DynamicLoaderMacOS.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+75-30lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
+66-2lldb/tools/debugserver/source/RNBRemote.cpp
+36-5lldb/include/lldb/Target/Process.h
+39-0llvm/test/CodeGen/AMDGPU/lower-intrinsics-noalias-metadata.ll
+19-14lldb/tools/debugserver/source/MacOSX/MachProcess.mm
+29-1lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+264-5212 files not shown
+362-7818 files

LLVM/project 1bc208alldb/include/lldb/Target Process.h, lldb/source/Plugins/DynamicLoader/MacOSX-DYLD DynamicLoaderMacOS.cpp

rebase

Created using spr 1.3.7
DeltaFile
+75-30lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
+66-2lldb/tools/debugserver/source/RNBRemote.cpp
+36-5lldb/include/lldb/Target/Process.h
+39-0llvm/test/CodeGen/AMDGPU/lower-intrinsics-noalias-metadata.ll
+19-14lldb/tools/debugserver/source/MacOSX/MachProcess.mm
+29-1lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+264-5212 files not shown
+362-7818 files