LLVM/project 9ace19clibcxx/test/std/algorithms/alg.nonmodifying/alg.fold nodiscard.verify.cpp

nodiscard test
DeltaFile
+37-0libcxx/test/std/algorithms/alg.nonmodifying/alg.fold/nodiscard.verify.cpp
+37-01 files

HardenedBSD/src 4a795bbshare/vt/keymaps Makefile, usr.sbin/nfsd nfsv4.4

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+154-24usr.sbin/nfsd/nfsv4.4
+2-0share/vt/keymaps/Makefile
+156-242 files

HardenedBSD/ports f0accf8devel/nextest distinfo Makefile, misc/py-pytorch/files patch-test_run__test.py

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+477-261x11/clipcat/distinfo
+239-132x11/clipcat/Makefile
+99-55devel/nextest/distinfo
+49-27devel/nextest/Makefile
+59-0misc/py-pytorch/files/patch-test_run__test.py
+27-21sysutils/mise/distinfo
+950-496106 files not shown
+1,691-842112 files

FreeBSD/ports 5386abddevel/forgejo-cli distinfo Makefile.crates

devel/forgejo-cli [New port]: CLI client for Forgejo

https://codeberg.org/forgejo-contrib/forgejo-cli

Sponsored by:   The FreeBSD Foundation
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/ports/pulls/8
DeltaFile
+597-0devel/forgejo-cli/distinfo
+296-0devel/forgejo-cli/Makefile.crates
+41-0devel/forgejo-cli/Makefile
+15-0devel/forgejo-cli/pkg-message
+11-0devel/forgejo-cli/pkg-descr
+4-0devel/forgejo-cli/pkg-plist
+964-01 files not shown
+965-07 files

LLVM/project 63ae74bclang/test/CXX/drs cwg2947.cpp, clang/www cxx_dr_status.html

[clang] Update C++ DR status page (#192768)

Now that Croydon motions are reflected in `cwg_index.html`.
DeltaFile
+321-220clang/www/cxx_dr_status.html
+1-1clang/test/CXX/drs/cwg2947.cpp
+322-2212 files

FreeBSD/ports 6f74c3fsysutils/bin distinfo Makefile

sysutils/bin: Update to 0.25.4

ChangeLog: https://github.com/marcosnils/bin/releases/tag/v0.25.4
DeltaFile
+5-5sysutils/bin/distinfo
+1-1sysutils/bin/Makefile
+6-62 files

HardenedBSD/ports 6f74c3fsysutils/bin distinfo Makefile

sysutils/bin: Update to 0.25.4

ChangeLog: https://github.com/marcosnils/bin/releases/tag/v0.25.4
DeltaFile
+5-5sysutils/bin/distinfo
+1-1sysutils/bin/Makefile
+6-62 files

NetBSD/pkgsrc-wip 6ad7a17freetds distinfo Makefile

freetds: update to 1.5.16
DeltaFile
+3-3freetds/distinfo
+1-1freetds/Makefile
+4-42 files

LLVM/project 4ef2a51libcxx/test/libcxx/diagnostics iterator.nodiscard.verify.cpp, libcxx/test/libcxx/iterators iterator.nodiscard.verify.cpp

relocate test
DeltaFile
+38-0libcxx/test/libcxx/iterators/iterator.nodiscard.verify.cpp
+0-38libcxx/test/libcxx/diagnostics/iterator.nodiscard.verify.cpp
+38-382 files

LLVM/project 6bb3a35clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaChecking.cpp

[clang] Improve diagnostics for `__builtin_align` builtins with floating/member pointer operands (#192650)

Improve diagnostics for `__builtin_align_up`, `__builtin_align_down`,
and `__builtin_is_aligned` when the first operand has an invalid type.

Clang already emits `err_typecheck_expect_scalar_operand` for
unsupported operands, but the message is generic. This patch adds
follow-up notes to clarify three common invalid cases:

* floating point operands (“floating point types are not allowed here”)
* C++ member pointer operands (“member pointers are not allowed here”)
* plain-function-pointer ("function pointers are not allowed here")
DeltaFile
+7-2clang/lib/Sema/SemaChecking.cpp
+5-1clang/test/Sema/builtin-align.c
+3-3clang/test/SemaCXX/builtin-align-cxx.cpp
+6-0clang/include/clang/Basic/DiagnosticSemaKinds.td
+21-64 files

LLVM/project 499593cllvm/lib/Target/LoongArch LoongArchLSXInstrInfo.td LoongArchLASXInstrInfo.td, llvm/test/CodeGen/LoongArch/lasx/ir-instruction nor.ll

[LoongArch] Select `V{AND,OR,XOR,NOR}I.B` for bitwise with byte splat immediates (#192217)

The `V{AND,OR,XOR,NOR}I.B` instructions operate on byte elements and
accept an 8-bit immediate. However, when the same byte splat constant is
used with wider vector element types (e.g. v8i16, v4i32, v2i64),
instruction selection currently falls back to materializing the constant
in a temporary register.

```
vrepli.b  -1
vxor.v
```

even though the immediate form is available:

```
vxori.b 255
```


    [11 lines not shown]
DeltaFile
+17-2llvm/lib/Target/LoongArch/LoongArchLSXInstrInfo.td
+12-0llvm/lib/Target/LoongArch/LoongArchLASXInstrInfo.td
+3-6llvm/test/CodeGen/LoongArch/lasx/ir-instruction/nor.ll
+3-6llvm/test/CodeGen/LoongArch/lsx/ir-instruction/icmp.ll
+3-6llvm/test/CodeGen/LoongArch/lsx/ir-instruction/nor.ll
+3-6llvm/test/CodeGen/LoongArch/lsx/ir-instruction/or.ll
+41-2612 files not shown
+73-8418 files

LLVM/project 780a959lldb/include/lldb/ValueObject DILParser.h, lldb/source/Target StackFrame.cpp

[lldb] Remove unused bool members of DILParser (NFC) (#192572)

These options are used by DIL's `Interpreter`, but are unused by the
Parser.
DeltaFile
+6-18lldb/source/ValueObject/DILParser.cpp
+3-15lldb/include/lldb/ValueObject/DILParser.h
+2-3lldb/source/Target/StackFrame.cpp
+11-363 files

FreeBSD/ports 4a332f9graphics/curtail pkg-plist distinfo

graphics/curtail: update 1.13.0 → 1.15.1
DeltaFile
+10-0graphics/curtail/pkg-plist
+3-3graphics/curtail/distinfo
+1-1graphics/curtail/Makefile
+14-43 files

HardenedBSD/ports 4a332f9graphics/curtail pkg-plist distinfo

graphics/curtail: update 1.13.0 → 1.15.1
DeltaFile
+10-0graphics/curtail/pkg-plist
+3-3graphics/curtail/distinfo
+1-1graphics/curtail/Makefile
+14-43 files

HardenedBSD/ports df5ac7fsysutils/conan distinfo Makefile

sysutils/conan: update 2.23.0 → 2.27.1
DeltaFile
+3-3sysutils/conan/distinfo
+1-1sysutils/conan/Makefile
+4-42 files

FreeBSD/ports df5ac7fsysutils/conan distinfo Makefile

sysutils/conan: update 2.23.0 → 2.27.1
DeltaFile
+3-3sysutils/conan/distinfo
+1-1sysutils/conan/Makefile
+4-42 files

FreeBSD/ports a205a03math/alglib distinfo Makefile

math/alglib: update 4.06.0 → 4.07.0
DeltaFile
+3-3math/alglib/distinfo
+1-1math/alglib/Makefile
+4-42 files

HardenedBSD/ports a205a03math/alglib distinfo Makefile

math/alglib: update 4.06.0 → 4.07.0
DeltaFile
+3-3math/alglib/distinfo
+1-1math/alglib/Makefile
+4-42 files

FreeBSD/doc 6440a94website/content/en/status/report-2026-01-2026-03 kbench-maint-pkgdist.adoc

Status/2026q1/kbench-maint-pkgdist.adoc: Add missing sponsorship line

Sponsored by:   The FreeBSD Foundation
DeltaFile
+2-0website/content/en/status/report-2026-01-2026-03/kbench-maint-pkgdist.adoc
+2-01 files

FreeBSD/doc cb27009website/content/en/status/report-2026-01-2026-03 pkgbasify.adoc

Status/2026Q1/pkgbasify.adoc: Add missing sponsorship line

Sponsored by:   The FreeBSD Foundation
DeltaFile
+2-0website/content/en/status/report-2026-01-2026-03/pkgbasify.adoc
+2-01 files

FreeBSD/doc 32f3831website/content/en/status/report-2026-01-2026-03 freebsd-foundation.adoc

status/2026q1/freebsd-foundation.adoc: Fix cross references

Sponsored by:   The FreeBSD Foundation
DeltaFile
+1-3website/content/en/status/report-2026-01-2026-03/freebsd-foundation.adoc
+1-31 files

FreeBSD/ports 178f74ddevel/buf distinfo Makefile

devel/buf: update 1.68.0 → 1.68.2
DeltaFile
+5-5devel/buf/distinfo
+1-1devel/buf/Makefile
+6-62 files

HardenedBSD/ports 178f74ddevel/buf distinfo Makefile

devel/buf: update 1.68.0 → 1.68.2
DeltaFile
+5-5devel/buf/distinfo
+1-1devel/buf/Makefile
+6-62 files

FreeBSD/ports 39c1882misc/fabric distinfo Makefile

misc/fabric: update 1.4.446 → 1.4.448
DeltaFile
+5-5misc/fabric/distinfo
+1-1misc/fabric/Makefile
+6-62 files

HardenedBSD/ports 39c1882misc/fabric distinfo Makefile

misc/fabric: update 1.4.446 → 1.4.448
DeltaFile
+5-5misc/fabric/distinfo
+1-1misc/fabric/Makefile
+6-62 files

LLVM/project ebbcd42lldb/packages/Python/lldbsuite/test dotest_args.py, lldb/packages/Python/lldbsuite/test/builders darwin.py builder.py

Revert "[lldb] Rally around triple rather than arch in the API tests (#191416)" (#192763)

Temoprarily reverting while we look at the TestMacCatalyst.py and
TestRosetta.py fails introduced by this PR, to unblock the CI.

This reverts commit 86397f49c7725f35a51517a8290cb4207c97771d.
DeltaFile
+81-33lldb/packages/Python/lldbsuite/test/builders/darwin.py
+86-24lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+15-11lldb/packages/Python/lldbsuite/test/builders/builder.py
+16-6lldb/packages/Python/lldbsuite/test/dotest_args.py
+5-12lldb/test/API/commands/expression/ptrauth-objc/TestPtrAuthObjectiveC.py
+4-11lldb/test/API/commands/expression/ptrauth/TestPtrAuthExpressions.py
+207-9711 files not shown
+230-13117 files

FreeBSD/ports 7f6e230databases/weaviate distinfo Makefile

databases/weaviate: update 1.36.11 → 1.37.1
DeltaFile
+5-5databases/weaviate/distinfo
+2-2databases/weaviate/Makefile
+7-72 files

HardenedBSD/ports 7f6e230databases/weaviate distinfo Makefile

databases/weaviate: update 1.36.11 → 1.37.1
DeltaFile
+5-5databases/weaviate/distinfo
+2-2databases/weaviate/Makefile
+7-72 files

HardenedBSD/ports 16e3cccmultimedia/kew distinfo pkg-plist

multimedia/kew: update 3.6.4 → 3.7.3
DeltaFile
+3-3multimedia/kew/distinfo
+5-0multimedia/kew/pkg-plist
+1-1multimedia/kew/Makefile
+9-43 files

FreeBSD/ports 16e3cccmultimedia/kew distinfo pkg-plist

multimedia/kew: update 3.6.4 → 3.7.3
DeltaFile
+3-3multimedia/kew/distinfo
+5-0multimedia/kew/pkg-plist
+1-1multimedia/kew/Makefile
+9-43 files