LLVM/project 3b6e56dllvm/test/CodeGen/AMDGPU integer-mad-patterns.ll fcanonicalize.bf16.ll, llvm/test/CodeGen/RISCV/rvv expandload.ll

rebase

Created using spr 1.3.8-wip
DeltaFile
+3,666-5,073llvm/test/CodeGen/RISCV/rvv/expandload.ll
+1,318-117llvm/test/CodeGen/AMDGPU/integer-mad-patterns.ll
+835-387llvm/test/CodeGen/AMDGPU/fcanonicalize.bf16.ll
+610-305llvm/test/CodeGen/AMDGPU/atomics-system-scope.ll
+505-259llvm/test/CodeGen/AMDGPU/insert_vector_elt.v2bf16.ll
+460-214llvm/test/CodeGen/AMDGPU/load-constant-i1.ll
+7,394-6,355200 files not shown
+14,725-8,698206 files

OpenBSD/ports lQhv7zldevel/p5-IPC-Run Makefile distinfo

   update p5-IPC-Run to 20260402.0
VersionDeltaFile
1.20+3-2devel/p5-IPC-Run/Makefile
1.10+2-2devel/p5-IPC-Run/distinfo
+5-42 files

pkgng/pkgng c6a935dlibpkg Makefile.autosetup, src Makefile.autosetup

Fix overlinking on macOS

On macOS, --as-needed isn't available, so avoid overlinking.
DeltaFile
+6-7src/Makefile.autosetup
+1-3libpkg/Makefile.autosetup
+7-102 files

LLVM/project 5845d8ellvm/include/llvm/IR InstrTypes.h, llvm/lib/Analysis ConstantFolding.cpp

[ConstantFolding] Non-constrained functions in strictfp

Non-constrained function calls, allowed in strictfp functions by
PR188297, are equivalent to their constrained counterparts with dynamic
rounding and strict exception handling. When constant folding the calls
of these functions, some cases cannot be folded due to unknown rounding
mode or floting-point exceptions that can be lost. This change adapts
constant folding for these case.
DeltaFile
+306-0llvm/test/Transforms/InstSimplify/constfold-strictfp.ll
+87-50llvm/lib/Analysis/ConstantFolding.cpp
+9-0llvm/include/llvm/IR/InstrTypes.h
+402-503 files

LLVM/project b5e7dbbllvm/lib/IR Value.cpp

[IR] Use iteration limit in stripPointerCastsAndOffsets (#190472)

Using a SmallPtrSet is not quite free for such a frequently called
operation. However, calls on ill-formed IR are not particularly rare, so
some iteration limit is needed. Therefore, use a simple counter.

Termination statistics on a Clang Release build for N>5:

   2448 N=6
   1295 N=7
    480 N=8
    294 N=9
    160 N=10
  14350 (endless loop)

Therefore, bound the number of iterations by 12, which should cover most
practically relevant cases.

It is worth noting that _all_ of the endless loop cases have the

    [5 lines not shown]
DeltaFile
+12-7llvm/lib/IR/Value.cpp
+12-71 files

HardenedBSD/src e4b9243lib/msun/man fmaximum.3, lib/msun/src s_fminimum.c s_fmaximum.c

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+188-0lib/msun/tests/fmaximum_fminimum_test.c
+103-0lib/msun/man/fmaximum.3
+66-0lib/msun/src/s_fminimum.c
+65-0lib/msun/src/s_fmaximum.c
+61-0lib/msun/src/s_fminimumf.c
+60-0lib/msun/src/s_fmaximumf.c
+543-08 files not shown
+684-914 files

HardenedBSD/src 933d76alib/msun/man fmaximum.3, lib/msun/src s_fminimum.c s_fmaximum.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+188-0lib/msun/tests/fmaximum_fminimum_test.c
+103-0lib/msun/man/fmaximum.3
+66-0lib/msun/src/s_fminimum.c
+65-0lib/msun/src/s_fmaximum.c
+61-0lib/msun/src/s_fminimumf.c
+60-0lib/msun/src/s_fmaximumf.c
+543-08 files not shown
+684-914 files

HardenedBSD/ports cd93cf4devel/elm-format distinfo Makefile, games/hs-scroll Makefile distinfo

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+165-164net/keycloak/pkg-plist
+159-147devel/elm-format/distinfo
+3-87devel/elm-format/Makefile
+86-0devel/elm-format/Makefile.cabal
+2-32games/hs-scroll/Makefile
+15-17games/hs-scroll/distinfo
+430-44735 files not shown
+569-55541 files

FreeBSD/ports 8cf0bccnet/jotta-cli Makefile distinfo

net/jotta-cli: Update 0.17.132497 => 0.17.159692

Release notes:
https://docs.jottacloud.com/en/articles/1461561-release-notes-for-jottacloud-cli

- Add ability to run make makesum on any ARCH.
- Replace RESTRICTED with LICENSE_PERMS.

PR:             293665
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH:            2026Q2

(cherry picked from commit 08626de96465b10088465d030f5fdd74584caf16)

: Update  =>

Changelog:


    [2 lines not shown]
DeltaFile
+11-6net/jotta-cli/Makefile
+5-5net/jotta-cli/distinfo
+16-112 files

OpenBSD/ports QUR8Mzhdevel/p5-YAML-Syck distinfo Makefile, devel/p5-YAML-Syck/patches patch-syck_h

   update p5-YAML-Syck to 1.44
VersionDeltaFile
1.3+8-5devel/p5-YAML-Syck/pkg/DESCR
1.16+2-2devel/p5-YAML-Syck/distinfo
1.30+1-1devel/p5-YAML-Syck/Makefile
1.6+1-1devel/p5-YAML-Syck/patches/patch-syck_h
+12-94 files

LLVM/project ba3dbbflldb/include/lldb/Utility Log.h, lldb/source/Breakpoint BreakpointResolverName.cpp

[lldb] Remove Log::Error and Log::Warning (NFC) (#190440)
DeltaFile
+24-24lldb/source/Target/ThreadPlan.cpp
+0-26lldb/source/Utility/Log.cpp
+5-5lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+3-5lldb/source/Breakpoint/BreakpointResolverName.cpp
+0-5lldb/include/lldb/Utility/Log.h
+2-3lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+34-686 files

LLVM/project 27a762clldb/source/Target Process.cpp

[lldb][NFC] Add helper function for computing whether to show Process error (#190189)
DeltaFile
+13-12lldb/source/Target/Process.cpp
+13-121 files

NetBSD/src W00wbCXlib/libc/softfloat/bits64 softfloat.c

   libc: fix undefined behavior in int64_to_float128

   When negating a signed integer, the integer must not be LLONG_MIN, as
   negating that value would not change the sign. GCC's -ftrapv mode
   detects cases like this reliably.

   In this case, on sparc64 with -O2 (but not -O0 or -O1),
   countLeadingZeros64(LLONG_MIN) returned 48 instead of the desired 0, and
   int64_to_float128(LLONG_MIN) returned -0x1p+14 instead of the desired
   -0x1p+63.

   The same pattern is used in several other conversion functions. These
   will be fixed in a follow-up commit once the lint tests for msg_380 and
   msg_381 on sparc64 work again.
VersionDeltaFile
1.21+3-3lib/libc/softfloat/bits64/softfloat.c
+3-31 files

NetBSD/src V4wnF1Husr.bin/cut cut.1

   cut.1: add cross-reference to colrm(1)
VersionDeltaFile
1.20+2-1usr.bin/cut/cut.1
+2-11 files

HardenedBSD/ports 08626denet/jotta-cli Makefile distinfo

net/jotta-cli: Update 0.17.132497 => 0.17.159692

Release notes:
https://docs.jottacloud.com/en/articles/1461561-release-notes-for-jottacloud-cl

- Add ability to run make makesum on any ARCH.
- Replace RESTRICTED with LICENSE_PERMS.

PR:             293665
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH:            2026Q2
DeltaFile
+11-6net/jotta-cli/Makefile
+5-5net/jotta-cli/distinfo
+16-112 files

FreeBSD/ports 08626denet/jotta-cli Makefile distinfo

net/jotta-cli: Update 0.17.132497 => 0.17.159692

Release notes:
https://docs.jottacloud.com/en/articles/1461561-release-notes-for-jottacloud-cl

- Add ability to run make makesum on any ARCH.
- Replace RESTRICTED with LICENSE_PERMS.

PR:             293665
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH:            2026Q2
DeltaFile
+11-6net/jotta-cli/Makefile
+5-5net/jotta-cli/distinfo
+16-112 files

OpenBSD/ports aLu4HAMdevel/p5-IO-Tty distinfo Makefile, devel/p5-IO-Tty/patches patch-Makefile_PL

   update p5-IO-Tty to 1.27
VersionDeltaFile
1.7+5-18devel/p5-IO-Tty/patches/patch-Makefile_PL
1.16+2-2devel/p5-IO-Tty/distinfo
1.36+1-1devel/p5-IO-Tty/Makefile
+8-213 files

LLVM/project d4fe1d3llvm/lib/Analysis DependenceAnalysis.cpp, llvm/test/Analysis/DependenceAnalysis banerjee-overflow.ll

[DA] Add overflow check in BanerjeeMIVtest

Add an overflow check in BanerjeeMIVtest.
Fix the related test case.

Signed-off-by: Ruoyu Qiu <cabbaken at outlook.com>
DeltaFile
+7-1llvm/lib/Analysis/DependenceAnalysis.cpp
+1-3llvm/test/Analysis/DependenceAnalysis/banerjee-overflow.ll
+8-42 files

LLVM/project 420111emlir/lib/Dialect/LLVMIR/IR LLVMDialect.cpp, mlir/test/Dialect/LLVMIR roundtrip.mlir

[mlir][LLVM] Fix incorrect verification of atomicrmw f{min,max}imumnum (#190474)

Fix llvm.atomicrmw fminimumnum and fmaximumnum to correctly take the
float operation verification path.
DeltaFile
+3-1mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
+2-0mlir/test/Dialect/LLVMIR/roundtrip.mlir
+5-12 files

OpenBSD/src THSUPgCusr.bin/tmux format.c server-client.c

   Cache user from getpwuid because it can be very expensive on some
   platforms. From Ben Maurer in GitHub issue 4973.
VersionDeltaFile
1.356+12-5usr.bin/tmux/format.c
1.452+2-1usr.bin/tmux/server-client.c
1.1304+2-1usr.bin/tmux/tmux.h
+16-73 files

FreeBSD/ports f07bff5security/vuxml/vuln 2026.xml

security/vuxml: add missed python packages

PR: 294246
DeltaFile
+7-0security/vuxml/vuln/2026.xml
+7-01 files

HardenedBSD/ports f07bff5security/vuxml/vuln 2026.xml

security/vuxml: add missed python packages

PR: 294246
DeltaFile
+7-0security/vuxml/vuln/2026.xml
+7-01 files

FreeBSD/ports 2af09f6security/vuxml/vuln 2026.xml

security/vuxml: add ranges for python webbrowser.open() API entry

PR: 294246
DeltaFile
+5-4security/vuxml/vuln/2026.xml
+5-41 files

HardenedBSD/ports 2af09f6security/vuxml/vuln 2026.xml

security/vuxml: add ranges for python webbrowser.open() API entry

PR: 294246
DeltaFile
+5-4security/vuxml/vuln/2026.xml
+5-41 files

Illumos/gate bb22c2ausr/src/cmd/pwd pwd.c Makefile, usr/src/man/man1 pwd.1

17998 pwd should support -P and -L
Reviewed by: Toomas Soome <tsoome at me.com>
Reviewed by: Andy Fiddaman <illumos at fiddaman.net>
Approved by: Gordon Ross <gordon.w.ross at gmail.com>
DeltaFile
+122-88usr/src/man/man1/pwd.1
+156-0usr/src/test/util-tests/tests/pwd/pwd-test.ksh
+126-14usr/src/cmd/pwd/pwd.c
+43-0usr/src/test/util-tests/tests/pwd/Makefile
+3-1usr/src/cmd/pwd/Makefile
+1-0usr/src/test/util-tests/tests/Makefile
+451-1032 files not shown
+453-1038 files

FreeBSD/ports fb7962esecurity/wazuh-manager Makefile

security/wazuh-manager: Fix extract on 15.x
DeltaFile
+1-1security/wazuh-manager/Makefile
+1-11 files

HardenedBSD/ports fb7962esecurity/wazuh-manager Makefile

security/wazuh-manager: Fix extract on 15.x
DeltaFile
+1-1security/wazuh-manager/Makefile
+1-11 files

NetBSD/src CXae2G3sys/arch/atari/atari machdep.c, sys/arch/luna68k/luna68k machdep.c

   Consolidate the declaration of some globals.  More work to be done here.
VersionDeltaFile
1.123+2-10sys/arch/luna68k/luna68k/machdep.c
1.199+3-9sys/arch/atari/atari/machdep.c
1.90+2-9sys/arch/sun2/sun2/machdep.c
1.217+2-9sys/arch/sun3/sun3/machdep.c
1.145+2-9sys/arch/sun3/sun3x/machdep.c
1.183+2-8sys/arch/mvme68k/mvme68k/machdep.c
+13-549 files not shown
+35-11915 files

OpenBSD/src OfN4qUjusr.bin/tmux server-client.c options-table.c

   Add remain-on-exit key to keep pane around until a key is pressed, from
   Michael Grant.
VersionDeltaFile
1.451+10-1usr.bin/tmux/server-client.c
1.206+5-4usr.bin/tmux/options-table.c
1.1047+5-2usr.bin/tmux/tmux.1
1.144+2-1usr.bin/tmux/server-fn.c
+22-84 files

FreeBSD/ports 8336ae7net/keycloak pkg-plist distinfo

net/keycloak: Update 26.5.6 => 26.5.7

Release Notes:
https://www.keycloak.org/2026/04/keycloak-2657-released

PR:             294235
Security:       CVE-2025-14083
Security:       CVE-2026-1002
Security:       CVE-2026-3429
Security:       CVE-2026-4634
Security:       CVE-2026-4636
Security:       CVE-2026-3872
Security:       CVE-2026-4282
Sponsored by:   UNIS Labs
MFH:            2026Q2

(cherry picked from commit 37ce78ee03fb6b560d80561e84ee474a76d190a0)
DeltaFile
+165-164net/keycloak/pkg-plist
+3-3net/keycloak/distinfo
+1-1net/keycloak/Makefile
+169-1683 files