[LV][NFC] Reshape pointer_iv_non_uniform_0 test to use distinct loads (#196494)
The followup [patch](https://github.com/llvm/llvm-project/pull/196080)
is folding some of the idempotent binary ops This test has `sub x - x`
operation which is affected by the followup patch. This patch is making
the test immune to the fold.
textproc/enchant2: update to 2.8.16
Update to 2.8.16
This release fixes a bug in enchant(1) where an invalid word would
cause the rest of the line to be skipped when checking with -l.
PR: 295123
devel/glibmm26: update to 2.86.0
With recent update of devel/glib20 commit 944cdc82c7, this is update for
devel/glibmm26 to 2.86.0.
2.86.0 (stable) 2025-09-19:
gmmproc:
* tools/defs_gen/docextract: Improve extraction of enum enumerators.
New enumerators in glib, gtk, pango are usually documented with one
enumerator per documentation block.
(Kjell Ahlstedt)
2.85.0 (unstable) 2025-08-31:
Glib:
* Date: Add get_week_of_year() and get_weeks_in_year().
(Kjell Ahlstedt)
[13 lines not shown]
[clang] implement CWG2064: ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.
This also readds a few test cases from da98651, which was a previous attempt
at resolving CWG2064.
Fixes #8740
Fixes #61818
Fixes #190388
[clang] Add arm64_neon.h wrapper on windows (#196014)
Add an MSVC-compatible <arm64_neon.h> resource header that forwards to
Clang's generated <arm_neon.h>. This lets ARM64 Windows code using the
MSVC header name lower NEON intrinsics through Clang builtins instead of
eaving external neon_* calls such as neon_ld1m4_q32
Fixes #195683