[Instrumentation][nsan] Add maximumnum to NSAN (#186345)
Add support for the min/maximumnum intrinsics and the corresponding
libfuncs to the NumericalStabilitySanitizer.
[X86] Improve handling of i512 SRA(MSB,Amt) "highbits" mask creation (#187141)
This can be folded from ((1 << 511) >>s Amt) -> (-1 << (511-Amt)) to make use of the existing optimal codegen
Alive2: https://alive2.llvm.org/ce/z/9UMQkm
Last i512 pattern described in #132601
[mlir][vector] Extend vector.gather e2e test (#187071)
Extend the vector.gather e2e test to cover both available lowering
paths:
* Direct lowering to LLVM (via -test-lower-to-llvm)
* Lowering via vector.load (via -test-vector-gather-lowering)
This is a follow-up to https://github.com/llvm/llvm-project/pull/184706,
which updated a pattern used by -test-vector-gather-lowering.
The test is extended to operate on 2D memrefs so that the changes
in https://github.com/llvm/llvm-project/pull/184706 are meaningfully
exercised.
yt-dlp: update to 2026.3.17.
2026.03.17
Extractor changes
youtube
Always respect webpage_client extractor-arg (#16250) by bashonly
Fix --live-from-start support (#16254) by bashonly
Update ejs to 0.8.0 (#16269) by bashonly, Grub4K
Misc. changes
build: Use PyInstaller v6.19.0 for Windows (#16265) by bashonly
ci: Bump actions pins (#16252) by bashonly
docs: Fix player_client extractor-arg documentation (#16235) by bashonly
test: networking: Mark all CurlCFFIRH tests as flaky for any OS (#16266) by bashonly
[llvm][utils] Give git-llvm-push u+x permissions (#187211)
There's a hashbang at the top of the script so I presume the intention
is that it can be executed directly, but it seems to be lacking
executable permissions. This sets the user executable bit so running
./llvm/utils/git-llvm-push works
mail/dovecot-fts-xapian: Update to 1.9.3
This update adds support for dovecot 2.4, allows to limit the amount
of threads via the maxthreads option and fixes several bugs.
For 2.3, e. g. optionally use:
plugin {
fts = xapian
fts_xapian = lowmemory=500 maxthreads=4 partial=3 verbose=0
fts_autoindex = yes
fts_enforced = yes
<...>
}
Approved by: otis (maintainer)
Differential Revision: https://reviews.freebsd.org/D55911
17904 bhyve: more help for non-bootable VMs
Reviewed by: ixi meow <illumos at iximeow.net>
Reviewed by: Dan McDonald <danmcd at edgecast.io>
Reviewed by: Hans Rosenfeld <rosenfeld at grumpf.hope-2000.org>
Reviewed by: Toomas Soome <tsoome at me.com>
Approved by: Robert Mustacchi <rm+illumos at fingolfin.org>
[NFCI] [Serialization] Deduplicate DeclID properly (#187212)
In the original code, the operation to iterate Found is meaningless, as
it is guarded by Found.empty(). So this is always a noop for 10 years.
According to the context, I believe the intention is to avoid duplicated
DeclID to be in Data. So changing iterating Found to Data.
Just found by looking around the code.
This is not strictly NFC but NFC intentionally. I will be surprised if
this breaks anything.