LLVM/project af80688llvm/test/CodeGen/NVPTX tensormap_replace_sm_100a.ll tensormap_replace.ll

[NVPTX] Add missing preconditions to tensormap replace tests (#174190)

This change adds preconditions for the ISA and SM versions to the
`ptxas` RUN lines for the tests added in
14b1d770db7f9ee49693063ad851215dede0766e which were accidentally
omitted.
DeltaFile
+1-1llvm/test/CodeGen/NVPTX/tensormap_replace_sm_100a.ll
+1-1llvm/test/CodeGen/NVPTX/tensormap_replace.ll
+2-22 files

NetBSD/src aBGgknDdoc CHANGES-10.2

   Tickets #1212 and #1213
VersionDeltaFile
1.1.2.82+61-1doc/CHANGES-10.2
+61-11 files

LLVM/project da5845dclang/lib/AST/ByteCode InterpBuiltin.cpp, clang/test/AST/ByteCode builtins.c

[clang][bytecode] Check builtin_memchr for non-block pointers earlier (#174192)

The getType() call might fail. We can't pull the isReadable() check up
though because that creates different diagnostic output compared to the
current interpreter.

Fixes #172202
DeltaFile
+3-0clang/lib/AST/ByteCode/InterpBuiltin.cpp
+1-0clang/test/AST/ByteCode/builtins.c
+4-02 files

LLVM/project bd566cdmlir/include/mlir/Interfaces ControlFlowInterfaces.h ControlFlowInterfaces.td, mlir/lib/Dialect/SCF/IR SCF.cpp

[mlir][draft] Consolidate patterns into RegionBranchOpInterface patterns

fix some tests

reorganize code
DeltaFile
+17-813mlir/lib/Dialect/SCF/IR/SCF.cpp
+467-0mlir/lib/Interfaces/ControlFlowInterfaces.cpp
+11-13mlir/test/Dialect/SCF/canonicalize.mlir
+9-0mlir/include/mlir/Interfaces/ControlFlowInterfaces.h
+4-4mlir/test/Transforms/remove-dead-values.mlir
+5-0mlir/include/mlir/Interfaces/ControlFlowInterfaces.td
+513-8306 files

LLVM/project 508e3cbclang/lib/AST/ByteCode Compiler.cpp, clang/test/AST/ByteCode cxx03.cpp

[clang][bytecode] Check for null Record (#174193)

This is an error case that results in a null Record, so don't crash
later in that case.

Fixes #173941
DeltaFile
+10-0clang/test/AST/ByteCode/cxx03.cpp
+2-0clang/lib/AST/ByteCode/Compiler.cpp
+12-02 files

LLVM/project 2b903dfllvm/cmake/modules HandleLLVMOptions.cmake

[CMake] Fix variable name mistake

Fixup of d1b88ca8d4c5d849ae93111ae9e24d88dad4b762, was an overly eager
find-replace..
DeltaFile
+2-2llvm/cmake/modules/HandleLLVMOptions.cmake
+2-21 files

LLVM/project 4ee9d73mlir/include/mlir/Interfaces ControlFlowInterfaces.h ControlFlowInterfaces.td, mlir/lib/Dialect/SCF/IR SCF.cpp

[mlir][draft] Consolidate patterns into RegionBranchOpInterface patterns

fix some tests

reorganize code
DeltaFile
+17-813mlir/lib/Dialect/SCF/IR/SCF.cpp
+461-0mlir/lib/Interfaces/ControlFlowInterfaces.cpp
+11-13mlir/test/Dialect/SCF/canonicalize.mlir
+9-0mlir/include/mlir/Interfaces/ControlFlowInterfaces.h
+4-4mlir/test/Transforms/remove-dead-values.mlir
+5-0mlir/include/mlir/Interfaces/ControlFlowInterfaces.td
+507-8306 files

NetBSD/src 2f3Ows9doc CHANGES-11.0

   Ticket #138
VersionDeltaFile
1.1.2.64+6-1doc/CHANGES-11.0
+6-11 files

NetBSD/pkgsrc-wip 0d229f2recutils TODO

recutils: Add reference to CVE-2025-65409
DeltaFile
+2-1recutils/TODO
+2-11 files

NetBSD/pkgsrc-wip acf4a88cloudflare-speed-cli DESCR

cloudflare-speed-cli: fix "a" copypasto
DeltaFile
+1-1cloudflare-speed-cli/DESCR
+1-11 files

NetBSD/src lj5tvSPsys/conf copyright

   Pull up following revision(s) (requested by hgutch in ticket #1991):

        sys/conf/copyright: revision 1.24

   welcome to 2026
VersionDeltaFile
1.17.4.6+1-1sys/conf/copyright
+1-11 files

NetBSD/pkgsrc-wip 2efca32cloudflare-speed-cli Makefile

cloudflare-speed-cli: simplify GITHUB_TAG handling

Omit not needed `refs/tags/`.
DeltaFile
+1-1cloudflare-speed-cli/Makefile
+1-11 files

NetBSD/src XjSgoeYsys/conf copyright

   Pull up following revision(s) (requested by hgutch in ticket #1212):

        sys/conf/copyright: revision 1.24

   welcome to 2026
VersionDeltaFile
1.20.4.4+1-1sys/conf/copyright
+1-11 files

LLVM/project 14c98bcllvm/lib/Transforms/Instrumentation ControlHeightReduction.cpp, llvm/test/Transforms/PGOProfile chr-unknown-profdata-crash.ll

[CHR] Fix crash when marking merged condition unknown (#173902)

CHR builds the merged hot-path predicate with
IRBuilder::CreateLogicalAnd. That helper is implemented as a select and
can constant-fold to a non- Instruction (e.g. i1 true). The pass then
attempted to mark the merged condition as having explicitly unknown
branch weights when profile data is present, but it unconditionally did
cast<Instruction>(MergedCondition), which can crash in release builds.

Guard the metadata update with dyn_cast<Instruction> and pass the
containing Function explicitly to avoid calling Instruction::getFunction
when the value is not attached yet.

Add a regression test that exercises the constant-folding case.

Crashing stack:

```
  2.      Running pass "chr" on function "repro_crash"

    [14 lines not shown]
DeltaFile
+33-0llvm/test/Transforms/PGOProfile/chr-unknown-profdata-crash.ll
+2-2llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
+35-22 files

NetBSD/src X2W2nJmsys/conf copyright

   Pull up following revision(s) (requested by hgutch in ticket #138):

        sys/conf/copyright: revision 1.24

   welcome to 2026
VersionDeltaFile
1.23.2.1+1-1sys/conf/copyright
+1-11 files

LLVM/project e63cc4allvm/lib/Analysis ValueTracking.cpp, llvm/test/Transforms/Attributor nofpclass.ll

Check isGuaranteedNotToBeUndef
DeltaFile
+6-4llvm/lib/Analysis/ValueTracking.cpp
+2-2llvm/test/Transforms/Attributor/nofpclass.ll
+8-62 files

LLVM/project 69b33a5llvm/lib/Analysis ValueTracking.cpp, llvm/test/Transforms/Attributor nofpclass.ll

ValueTracking: Improve handling of fadd in computeKnownFPClass.

This already recognized that if both inputs are positive, the
result is positive. Extend this to the mirror situation with
negative inputs.

Also special case fadd x, x. Canonically, fmul x, 2 is fadd x, x.
We can tell the sign bit won't change, and 0 will propagate.
DeltaFile
+25-25llvm/test/Transforms/Attributor/nofpclass.ll
+24-4llvm/lib/Analysis/ValueTracking.cpp
+49-292 files

LLVM/project 49f636bllvm/test/Transforms/Attributor nofpclass.ll

ValueTracking: Add more baseline tests for computeKnownFPClass of fadd

Test cases with fadd x, x. Also test cases where both inputs are known
negative.
DeltaFile
+636-106llvm/test/Transforms/Attributor/nofpclass.ll
+636-1061 files

DragonFlyBSD/src ea2c254sys/vfs/procfs procfs_status.c procfs_regs.c

procfs - Don't reset fd offset when reading regs, fpregs, or dbregs files.

* For repeated reads, we can simply use pread(2). And this way, we allow for
  normal shell tooling to work correctly on these procfs files.

* This also matches the behavior on NetBSD.
DeltaFile
+1-1sys/vfs/procfs/procfs_status.c
+0-1sys/vfs/procfs/procfs_regs.c
+0-1sys/vfs/procfs/procfs_fpregs.c
+0-1sys/vfs/procfs/procfs_dbregs.c
+1-44 files

OpenBSD/ports Nf8nMcomath/cddlib Makefile distinfo, math/cddlib/pkg PLIST

   Update to cddlib-0.94n.
VersionDeltaFile
1.6+3-4math/cddlib/Makefile
1.4+2-2math/cddlib/distinfo
1.5+1-0math/cddlib/pkg/PLIST
+6-63 files

LLVM/project d6feb62llvm/lib/Target/AMDGPU AMDGPULateCodeGenPrepare.cpp, llvm/lib/Transforms/Vectorize VectorCombine.cpp

review: apply the patch to vectorcombine based on suggestion
DeltaFile
+82-85llvm/test/CodeGen/AMDGPU/combine-scalar-selects.ll
+4-153llvm/lib/Target/AMDGPU/AMDGPULateCodeGenPrepare.cpp
+122-0llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+2-2llvm/test/CodeGen/AMDGPU/combine-scalar-selects-asm.ll
+210-2404 files

OpenBSD/ports LfPEVA1graphics/pngcheck Makefile distinfo, graphics/pngcheck/patches patch-pngcheck_1 patch-gpl_png-fix-IDAT-windowsize_1

   Update to pngcheck-4.0.1.
VersionDeltaFile
1.4+4-5graphics/pngcheck/patches/patch-pngcheck_1
1.5+3-4graphics/pngcheck/Makefile
1.3+2-2graphics/pngcheck/distinfo
1.3+0-4graphics/pngcheck/pkg/PLIST
1.3+0-0graphics/pngcheck/patches/patch-gpl_png-fix-IDAT-windowsize_1
1.3+0-0graphics/pngcheck/patches/patch-gpl_pngsplit_1
+9-156 files

LLVM/project 9d3200ellvm/lib/Target/AMDGPU AMDGPULateCodeGenPrepare.cpp, llvm/lib/Transforms/Vectorize VectorCombine.cpp

review: apply the patch to vectorcombine based on suggestion
DeltaFile
+245-128llvm/test/CodeGen/AMDGPU/combine-scalar-selects.ll
+4-153llvm/lib/Target/AMDGPU/AMDGPULateCodeGenPrepare.cpp
+111-0llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+2-2llvm/test/CodeGen/AMDGPU/combine-scalar-selects-asm.ll
+362-2834 files

OpenBSD/ports 8kSFplrdevel/iso-codes Makefile distinfo

   Update to iso-codes-4.20.1.
VersionDeltaFile
1.90+5-7devel/iso-codes/Makefile
1.66+2-2devel/iso-codes/distinfo
+7-92 files

LLVM/project f52ff87mlir/include/mlir/Interfaces ControlFlowInterfaces.h ControlFlowInterfaces.td, mlir/lib/Dialect/SCF/IR SCF.cpp

[mlir][draft] Consolidate patterns into RegionBranchOpInterface patterns

fix some tests

reorganize code
DeltaFile
+17-813mlir/lib/Dialect/SCF/IR/SCF.cpp
+491-0mlir/lib/Interfaces/ControlFlowInterfaces.cpp
+11-13mlir/test/Dialect/SCF/canonicalize.mlir
+9-0mlir/include/mlir/Interfaces/ControlFlowInterfaces.h
+4-4mlir/test/Transforms/remove-dead-values.mlir
+5-0mlir/include/mlir/Interfaces/ControlFlowInterfaces.td
+537-8306 files

LLVM/project db9549cclang/lib/AST/ByteCode InterpBuiltin.cpp, clang/test/AST/ByteCode builtin-functions.cpp

[clang][bytecode] Check builtin_memchr() for one-past-end pointers (#174187)

We can't read from them and this fails later.

Fixes https://github.com/llvm/llvm-project/issues/173942
DeltaFile
+5-0clang/lib/AST/ByteCode/InterpBuiltin.cpp
+4-0clang/test/AST/ByteCode/builtin-functions.cpp
+9-02 files

OPNSense/core e32f5c2src/etc config.xml.sample

interfaces: drop defaults from config.xml.sample
DeltaFile
+0-4src/etc/config.xml.sample
+0-41 files

OPNSense/core 3653214src/etc/inc interfaces.lib.inc interfaces.inc

interfaces: fix per-if isset() overwrite case
DeltaFile
+8-3src/etc/inc/interfaces.lib.inc
+0-2src/etc/inc/interfaces.inc
+8-52 files

FreeBSD/ports 2d5ed56misc/github-copilot-cli pkg-plist distinfo, misc/github-copilot-cli/files package-lock.json package.json

misc/github-copilot-cli: update 0.0.366 → 0.0.373
DeltaFile
+109-5misc/github-copilot-cli/files/package-lock.json
+0-52misc/github-copilot-cli/files/package.json
+25-1misc/github-copilot-cli/pkg-plist
+3-3misc/github-copilot-cli/distinfo
+2-2misc/github-copilot-cli/Makefile
+139-635 files

FreeBSD/ports 95b5277devel/RStudio Makefile, devel/RStudio/files package-lock-desktop.json

devel/RStudio: Fix fetch after the npm update broke it
DeltaFile
+344-327devel/RStudio/files/package-lock-desktop.json
+8-5devel/RStudio/Makefile
+352-3322 files