[VPlan] Add missing sext(sub) SCEV fold to getSCEVExprForVPValue.
SCEV has a manual fold when doing SCEV construction from IR, that is not
integrated in the regular SCEV construction functions. Mirror the
behavior in getSCEVExprForVPValue, to match results when constructing
SCEVs from IR.
Fixes https://github.com/llvm/llvm-project/issues/174622.
biology/sra-tools: Unbreak with extra JDK present
Cmake find_package(Java) uses the latest version found, and plist
varies depending on the version used. Set JAVE_HOME to limit
cmake's search to the version specified in the port. This is the
only way to control find_package() for Java versions.
ValueTracking: Fix handling of fadd with mixed denormal modes
Fix case where the input mode is IEEE, the output flushes, and the
input could be subnormal. Also improves accuracy with positive zero
case.
geography/viking: Update to 1.11
Viking 1.11 (2026-01-11)
New features since 1.10
* Return to OpenStreetMap (https://openstreet.org) as the Map Default.
** Raster tiles from https://opentopomap.org is depreciated.
* Read support of Garmin .FIT files.
* SF Features#135: Support Georef layer image rotation.
* SF Features#151: Enable visual status indicator of each tile cache.
* More support for GPX fields: URL/Link properties.
* Support reading as much information as read in from invalid GPX files (rather than just giving up).
* More support for KML properties: snippet, track color, name and description.
* New TAC analysis for consecutive squares in linear directions.
* Support daylight times and basic astronomical data using libnova.
* Support Waypoint proximity alarms.
* GPX Lap support read only display output in tooltips and a table view.
* Github #148: Allow horizontal scroll on preferences.
* GitHub #152: GeoRef Zoomed in image fast redraw.
[22 lines not shown]
biology/sra-tools: pin to java 17
As soon as another JDK is installed it fails the build.
This commit will make it possible to bump JAVA_DEFAULT to 21
while the maintainer looks for a solution to build this port
with other JDK versions.
PR: 292215
MAINTAINERS/CODEOWNERS: Add myself to mpr, mps and mpi3mr
Yea, I realize these are decaying, but I'm going to take a run at
automatically tagging reviews for github pull requests. I suspect that
tagging will help with the 'stale' issues with at least CODEOWNER. As
better data becomes available, especailly for contrib, I'll update
things.
Sponsored by: Netflix
powerpc: put the isync inside the TD_LOCK() checking loop
Fix a narrow window where the lock is unlocked but the checking CPU
hasn't flushed things appropriately.
Inside this window the CPU inside cpu_switch() will loop forever thinking
the destination thread is still blocked/locked even though it is not.
This manifests as the system hanging after starting all APs.
I've seen this reliably trigger in qemu-system-ppc64 running power9 pseries
guests; the more CPUs the more likely it triggers at boot.
PR: kern/292167
Differential Revision: https://reviews.freebsd.org/D54478
Reviewed by: jhibbits
MFC after: 1 week
Relnotes: yes
(cherry picked from commit 8df2e542146801fd01675e56724eaa567d04c209)
Merge commit faa5141b9be4 from file git (by Christos Zoulas):
PR/656: harry.sintonen: Fix bug in byte swapping that was caused by the change to make flags uint16_t and cont_level uint8_t.
This fixes using a magic.mgc built with a different endianness than
file(1) itself, e.g. when building powerpc64 on amd64.
PR: 292079
Fixes: ae316d1d1cff ("MFV: file 5.46.")
MFC after: 3 days
(cherry picked from commit 39047538cf5d8f26112f7b08b3c56967f70f7f94)
KERN_PROC - Fix KERN_PROC_ARGS and KERN_PROC_CWD to return length if oldptr==NULL.
Sysctl handlers still have to compute the full output, even when
oldptr == NULL. This is necessary to implement the behavior documented in
sysctl(3), that it will return the required buffer length in "oldlenp", if
"oldptr" is NULL and "oldlenp" is not NULL.
gnutls: disable GNUTLS_GAS_VERSION check for NetBSD
This was added in 2020 for CentOS 6. This test never worked on NetBSD
because the version number looks different there ($4 is always
"Binutils").
Perhaps this should be limited to Linux instead.
Avoids a fork during Makefile parsing.