LLVM/project c162731compiler-rt/lib/builtins/arm dcmp.h cmpdf2.S, compiler-rt/lib/builtins/arm/thumb1 dcmp.h gedf2.S

Update for rename of endian.h in a previous patch
DeltaFile
+2-2compiler-rt/lib/builtins/arm/dcmp.h
+2-2compiler-rt/lib/builtins/arm/thumb1/dcmp.h
+1-1compiler-rt/lib/builtins/arm/cmpdf2.S
+1-1compiler-rt/lib/builtins/arm/gedf2.S
+1-1compiler-rt/lib/builtins/arm/thumb1/gedf2.S
+1-1compiler-rt/lib/builtins/arm/thumb1/unorddf2.S
+8-82 files not shown
+10-108 files

LLVM/project 3174273llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

Merge from main
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-019,504 files not shown
+2,315,743-579,95619,510 files

OPNSense/core ac54d3dsrc/opnsense/scripts/health fetchData.py

Reporting: Health - render NaN as empty values [null] and omit leading empty records from set, closes https://github.com/opnsense/core/issues/10307
DeltaFile
+6-2src/opnsense/scripts/health/fetchData.py
+6-21 files

LLVM/project 0c539fccompiler-rt/lib/builtins CMakeLists.txt, compiler-rt/lib/builtins/arm divdf3.S muldf3.S

[compiler-rt][ARM] Optimized double-precision FP mul/div (#179923)

Optimized AArch32 implementations of `muldf3` and `divdf3` are provided.
The division function is particularly tricky because its Newton-Raphson
approximation strategy requires a rigorous error bound. In this version
of the commit I've left out the full supporting machinery that validates
the error bound via Gappa and Rocq, but full details are provided via
links to the upstream version of this code in the Arm Optimized Routines
repository, and to a pair of Arm Community blog posts.
DeltaFile
+862-0compiler-rt/test/builtins/Unit/divdf3new_test.c
+832-0compiler-rt/test/builtins/Unit/muldf3new_test.c
+646-0compiler-rt/lib/builtins/arm/divdf3.S
+404-0compiler-rt/lib/builtins/arm/muldf3.S
+2-0compiler-rt/lib/builtins/CMakeLists.txt
+2,746-05 files

LLVM/project aa20895llvm/lib/Target/AMDGPU/Disassembler AMDGPUDisassembler.cpp, llvm/test/MC/AMDGPU literals.s

[AMDGPU] Fix disasm roundtrip for forced fp64 literal
DeltaFile
+8-15llvm/test/MC/AMDGPU/literals.s
+7-1llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
+15-162 files

LLVM/project e1135dcoffload/plugins-nextgen/level_zero/include L0Kernel.h, offload/plugins-nextgen/level_zero/src L0Kernel.cpp

[OFFLOAD][L0] Simplify kernel setGroups logic (#197411)

This code path is not really used with upstream code generation.
DeltaFile
+12-220offload/plugins-nextgen/level_zero/src/L0Kernel.cpp
+0-51offload/plugins-nextgen/level_zero/include/L0Kernel.h
+12-2712 files

DragonFlyBSD/src 726d491usr.bin/tr cmap.h cset.h

tr(1): Mark two functions __always_inline to silence GCC 12.5 -Winline.

Suggested-by: aly
DeltaFile
+1-1usr.bin/tr/cmap.h
+1-1usr.bin/tr/cset.h
+2-22 files

NetBSD/src 0pAp8xzsys/net if.c

   if: abort early if no queue and the link state is the same

   Restores a minor optimisation the prior commit accidently removed.
VersionDeltaFile
1.538+6-2sys/net/if.c
+6-21 files

FreeBSD/ports 17c1346x11/xeyes Makefile distinfo

x11/xeyes: Update to 1.3.1

Add WWW.
Update pkg-descr.

https://lists.x.org/archives/xorg-announce/2025-July/003618.html

PR:             290494
Approved by:    x11 (arrowd)
Approved by:    fluffy (mentor)
DeltaFile
+3-4x11/xeyes/Makefile
+3-3x11/xeyes/distinfo
+5-1x11/xeyes/pkg-descr
+11-83 files

LLVM/project 2045ee5.github CODEOWNERS

Add new libc GH team to CODEOWNERS (#197630)

This auto-assigns PR reviewers, per the GitHub documentation.
DeltaFile
+1-0.github/CODEOWNERS
+1-01 files

LLVM/project 6990b14llvm/lib/Target/AMDGPU/Disassembler AMDGPUDisassembler.cpp, llvm/test/MC/AMDGPU literals.s

[AMDGPU] Fix disasm roundtrip for forced fp64 literal
DeltaFile
+7-1llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
+2-5llvm/test/MC/AMDGPU/literals.s
+9-62 files

LLVM/project f098a22clang/docs ClangFormatStyleOptions.rst, clang/include/clang/Format Format.h

[clang-format] Add BreakBeforeReturnType option (#197268)

In certain codebases (e.g. embedded) — function declarations could
accumulate a long prefix of specifiers and attributes (`static`,
`inline`, `__attribute__((...))`, project-specific `AttributeMacros`,
etc.) before the return type, which buries the core prototype and pushes
parameters past the column limit.

This patch adds a `BreakBeforeReturnType` style option that places that
prefix on its own line(s):

```cpp
__attribute__((always_inline)) static inline
int do_thing(int a, int b, int c);
```

The recognized prefix tokens are function/storage specifiers (`static`,
`extern`, `inline`, `virtual`, `constexpr`, `consteval`, `friend`,
`export`, `_Noreturn`, `__forceinline`), C++11 attribute groups

    [16 lines not shown]
DeltaFile
+166-0clang/unittests/Format/FormatTest.cpp
+72-0clang/lib/Format/TokenAnnotator.cpp
+32-0clang/docs/ClangFormatStyleOptions.rst
+26-0clang/include/clang/Format/Format.h
+15-0clang/lib/Format/Format.cpp
+12-0clang/unittests/Format/ConfigParseTest.cpp
+323-04 files not shown
+339-110 files

LLVM/project 3e96e2bllvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

Merge from main in the hope of fixing the unrelated CI failure
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-018,620 files not shown
+2,257,597-555,50718,626 files

LLVM/project dfb23a8compiler-rt/lib/builtins/arm divdf3.S

Correct symbol name in comment
DeltaFile
+2-2compiler-rt/lib/builtins/arm/divdf3.S
+2-21 files

LLVM/project a41d58eclang/test/CodeGen/AArch64 neon-perm.c poly64.c, clang/test/CodeGen/AArch64/fp8-intrinsics acle_neon_fp8_untyped.c

[CIR][AArch64] Lower NEON vtrn1/2 intrinsics (#197112)

### Summary

part of : https://github.com/llvm/llvm-project/issues/185382

Lower `vtrn1` and `vtrn2` intrinsics in
https://arm-software.github.io/acle/neon_intrinsics/advsimd.html#transpose-elements

All the intrinsics are handled inline in
llvm-project/build/lib/clang/23/include/arm_neon.h like:

```
#ifdef __LITTLE_ENDIAN__
__ai __attribute__((target("neon"))) int8x8x2_t vtrn_s8(int8x8_t __p0, int8x8_t __p1) {
  int8x8x2_t __ret;
  __builtin_neon_vtrn_v(&__ret, __builtin_bit_cast(int8x8_t, __p0), __builtin_bit_cast(int8x8_t, __p1), 0);
  return __ret;
}

    [14 lines not shown]
DeltaFile
+533-0clang/test/CodeGen/AArch64/neon/perm.c
+1-421clang/test/CodeGen/AArch64/neon-perm.c
+0-40clang/test/CodeGen/AArch64/fp8-intrinsics/acle_neon_fp8_untyped.c
+0-20clang/test/CodeGen/AArch64/poly64.c
+534-4814 files

FreeBSD/ports d401312x11/rgb distinfo Makefile

x11/rgb: Update to 1.1.1

https://lists.x.org/archives/xorg-announce/2025-December/003652.html

PR:             292139
Approved by:    x11 (arrowd)
Approved by:    fluffy (mentor)
DeltaFile
+3-3x11/rgb/distinfo
+1-3x11/rgb/Makefile
+4-62 files

FreeBSD/ports 2dd6326x11-fonts/fonttosfnt Makefile distinfo

x11-fonts/fonttosfnt: Update to 1.2.5

Fix COMMENT.
Update WWW and pkg-descr.

https://lists.x.org/archives/xorg-announce/2023-September/003422.html
https://lists.x.org/archives/xorg-announce/2024-October/003533.html
https://lists.x.org/archives/xorg-announce/2025-December/003651.html

PR:             288087
Approved by:    x11 (arrowd)
Approved by:    fluffy (mentor)
DeltaFile
+4-7x11-fonts/fonttosfnt/Makefile
+3-3x11-fonts/fonttosfnt/distinfo
+3-2x11-fonts/fonttosfnt/pkg-descr
+10-123 files

FreeBSD/ports 37be0bcnews/sabnzbd distinfo pkg-plist

news/sabnzbd: Update to 5.0.1

PR:             295032
Approved by:    Nicholas Kirby <nick at kirby.cx> (maintainer)
DeltaFile
+3-3news/sabnzbd/distinfo
+4-1news/sabnzbd/pkg-plist
+2-2news/sabnzbd/Makefile
+9-63 files

FreeBSD/ports 4202e34news/py-sabctools distinfo Makefile, news/py-sabctools/files patch-pyproject.toml

news/py-sabctools: Update to 9.4.0

PR:             295031
Approved by:    sunpoet (maintainer)
DeltaFile
+12-0news/py-sabctools/files/patch-pyproject.toml
+3-3news/py-sabctools/distinfo
+1-1news/py-sabctools/Makefile
+16-43 files

FreeBSD/ports 72ca11dx11-fonts/font-cursor-misc Makefile distinfo

x11-fonts/font-cursor-misc: Update to 1.0.4

Update WWW and pkg-descr.
Add LICENSE.

https://lists.x.org/archives/xorg-announce/2023-February/003352.html

PR:             292211
Approved by:    x11 (arrowd)
Approved by:    fluffy (mentor)
DeltaFile
+8-4x11-fonts/font-cursor-misc/Makefile
+3-2x11-fonts/font-cursor-misc/distinfo
+3-1x11-fonts/font-cursor-misc/pkg-descr
+14-73 files

FreeBSD/ports 3d83fc5sysutils/tailspin distinfo Makefile.crates

sysutils/tailspin: Update to 6.1.0

Changelog: https://github.com/bensadeh/tailspin/blob/6.1.0/CHANGELOG.md

Reported by:    GitHub (watch releases)
DeltaFile
+53-43sysutils/tailspin/distinfo
+25-20sysutils/tailspin/Makefile.crates
+1-2sysutils/tailspin/Makefile
+79-653 files

OpenBSD/ports NF0l6DYdevel/py-wcwidth distinfo Makefile, devel/py-wcwidth/pkg PLIST

   update to py3-wcwidth-0.7.0
VersionDeltaFile
1.13+24-0devel/py-wcwidth/pkg/PLIST
1.19+2-2devel/py-wcwidth/distinfo
1.32+1-1devel/py-wcwidth/Makefile
+27-33 files

OpenBSD/ports ztl1Xbvdevel/py-tempora Makefile distinfo

   update to py3-tempora-5.9.0
VersionDeltaFile
1.25+7-3devel/py-tempora/Makefile
1.9+2-2devel/py-tempora/distinfo
+9-52 files

OpenBSD/ports RvhPkUcdevel/py-test-rerunfailures distinfo Makefile

   update to py3-test-rerunfailures-16.2
VersionDeltaFile
1.2+2-2devel/py-test-rerunfailures/distinfo
1.2+1-1devel/py-test-rerunfailures/Makefile
+3-32 files

OpenBSD/ports uk9yPuXdevel/py-uharfbuzz distinfo Makefile

   update to py3-uharfbuzz-0.54.1
VersionDeltaFile
1.3+2-2devel/py-uharfbuzz/distinfo
1.3+1-1devel/py-uharfbuzz/Makefile
+3-32 files

NetBSD/pkgsrc LJ0dsNDdoc TODO

   doc/TODO: + erlang-29.0.
VersionDeltaFile
1.27255+2-2doc/TODO
+2-21 files

OpenBSD/ports TpWWpAndevel/py-virtualenv distinfo Makefile, devel/py-virtualenv/pkg PLIST

   update to py3-virtualenv-21.3.3
VersionDeltaFile
1.63+7-0devel/py-virtualenv/pkg/PLIST
1.62+2-2devel/py-virtualenv/distinfo
1.96+1-1devel/py-virtualenv/Makefile
+10-33 files

LLVM/project fc4aad7clang/lib/CodeGen CGDecl.cpp, clang/test/CodeGenCoroutines coro-param-fake-use.cpp

[Clang][Coroutines] Don't emit fake uses for coroutine parameters (#194690)

Fixes issue: https://github.com/llvm/llvm-project/issues/192351

The combination of coroutines with -fextend-variable-liveness has
resulted in use-after-free, caused by the fact that we insert fake uses
of coroutine parameters at the end of the coroutine. While this is fine
for normal functions, in coroutines these variables are stored in the
coroutine frame, which is freed before the end of the function; this
results in us loading from the deleted frame.

This patch fixes this by no longer emitting fake uses for most coroutine
parameters. Since coroutine parameters will be saved back to the frame
when we suspend, and currently may not be optimized out, fake uses are
not needed in this case, and so by not emitting them we avoid dealing
with the complexity of updating fake uses in the CoroSplit pass. The
exception to this is 'this', which is not saved to the frame.

(cherry picked from commit efb01c1bf558eaaf8ec64e1a54110584e827f21b)
DeltaFile
+42-0clang/test/CodeGenCoroutines/coro-param-fake-use.cpp
+7-2clang/lib/CodeGen/CGDecl.cpp
+49-22 files

OpenBSD/ports P2q5TCNdevel/py-wrapt distinfo Makefile

   update to py3-wrapt-2.1.2
VersionDeltaFile
1.12+2-2devel/py-wrapt/distinfo
1.29+2-1devel/py-wrapt/Makefile
+4-32 files

LLVM/project 7625a2flldb/source/Plugins/LanguageRuntime/ObjC ObjCLanguageRuntime.h

fixup! change small size to 2
DeltaFile
+1-1lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
+1-11 files