LLVM/project 77b7183compiler-rt/cmake/Modules CompilerRTUtils.cmake, runtimes CMakeLists.txt

[Runtimes] Fix /clang: prefix warning for GNU-like clang on Windows (#192041)

libclc has configure warning on Windows:
clang: error: no such file or directory:
'/clang:--target=amdgcn-amd-amdhsa-llvm' clang: error: no such file or
directory: '/clang:-print-target-triple'
  CMake Warning at CMakeLists.txt:239 (message):
    Failed to execute `llvm-project/build/bin/clang.exe
/clang:--target=amdgcn-amd-amdhsa-llvm /clang:-print-target-triple` to
    normalize target triple.

Switch to check CMAKE_C_COMPILER_FRONTEND_VARIANT because
- CMAKE_C_SIMULATE_ID=MSVC: true for both clang and clang-cl.
- CMAKE_C_COMPILER_FRONTEND_VARIANT=MSVC: true for clang-cl; false for clang.
DeltaFile
+1-1compiler-rt/cmake/Modules/CompilerRTUtils.cmake
+1-1runtimes/CMakeLists.txt
+2-22 files

LLVM/project a33ba5f.github/workflows libc-overlay-tests.yml

[libc] Include CPU model in overlay CI sccache key (#196477)

[libc] Include CPU model in overlay CI sccache key

The overlay CI compiles opt_host memory tests with `-march=native`,
which generates object files specific to the runner CPU model. sccache
treats `-march=native` as a literal string in its hash key, so cached
`.o` files compiled on one CPU model get served to runners with a
different CPU. When the cached binary uses instructions the current CPU
lacks, the test crashes with SIGILL.

## Symptoms

The `memcmp_opt_host`, `memmove_opt_host`, `memset_opt_host`,
`bcmp_opt_host`, and `bzero_opt_host` tests crash when SIMD code paths
are first exercised. Simple tests like `CmpZeroByte` pass because they
use small sizes that do not enter SIMD routines. The failures are fully
reproducible on reruns because the cache stays poisoned.


    [31 lines not shown]
DeltaFile
+26-1.github/workflows/libc-overlay-tests.yml
+26-11 files

OpenBSD/ports 5Ic4EaLdevel/spidermonkey140 distinfo Makefile

   Update to spidermonkey140-140.10.2.
VersionDeltaFile
1.10+2-2devel/spidermonkey140/distinfo
1.10+1-1devel/spidermonkey140/Makefile
+3-32 files

LLVM/project 76c69declang/docs ReleaseNotes.rst, clang/lib/Sema SemaCUDA.cpp

[CUDA/HIP] Do not check function calls in discarded statement (#194606)

Previously, calling a host-device mismatch function inside a discarded
`if constexpr` branch would trigger an error. This patch recognizes that
discarded statements are never instantiated and allows such code.
DeltaFile
+14-6clang/lib/Sema/SemaCUDA.cpp
+20-0clang/test/SemaCUDA/call-device-fn-from-host.cu
+18-0clang/test/SemaCUDA/call-host-fn-from-device.cu
+16-0clang/test/SemaCUDA/device-kernel-call.cu
+3-0clang/docs/ReleaseNotes.rst
+71-65 files

FreeBSD/doc 64d869ewebsite/data/ru/vendors consulting.toml misc.toml

website: RU - sync ru/vendors pages

data/ru/vendors toml files are synced with en version
DeltaFile
+21-14website/data/ru/vendors/consulting.toml
+0-6website/data/ru/vendors/misc.toml
+0-6website/data/ru/vendors/hardware.toml
+21-263 files

LLVM/project 71fef6dclang/lib/CodeGen CGDebugInfo.cpp CGDebugInfo.h

[clang][DebugInfo] Store current location metadata in CGDebugInfo (#193918)

EmitLocation and related functions are particularly hot and rederive
current source location metadata (line, column, file). Storing this
metadata when updating the current location in CGDebugInfo::setLocation
and reusing is a nice compile-time improvement on debug builds:

CTMark geomean:
- stage1-ReleaseLTO-g: -0.65%
- stage1-O0-g: -3.48%
- stage1-aarch64-O0-g: -2.82%
- stage2-O0-g: -3.53%

http://llvm-compile-time-tracker.com/compare.php?from=99c9a1f566df3ab4f37e156b62afd1d743882de0&to=78d281116ba7ee7e6c13625906be325b6495205a&stat=instructions%3Au

Assisted-by: codex
DeltaFile
+40-19clang/lib/CodeGen/CGDebugInfo.cpp
+12-2clang/lib/CodeGen/CGDebugInfo.h
+52-212 files

OpenBSD/ports z1Q0WTwnet/litecoin Makefile distinfo

   Update litecoin to 0.21.5.4
VersionDeltaFile
1.23+2-3net/litecoin/Makefile
1.7+2-2net/litecoin/distinfo
+4-52 files

OpenBSD/ports kth0EfNnet/bitcoin distinfo Makefile, net/bitcoin/pkg PFRAG.no-no_x11

   Update bitcoin to 31.0
VersionDeltaFile
1.31+2-2net/bitcoin/distinfo
1.56+1-2net/bitcoin/Makefile
1.5+1-1net/bitcoin/pkg/PFRAG.no-no_x11
+4-53 files

OpenBSD/ports 0PgwWI1editors/emacs Makefile, editors/emacs/patches patch-src_treesit_c patch-test_src_treesit-tests_el

   fix tree-sitter modes on emacs by applying this patch:
   https://github.com/emacs-mirror/emacs/commit/b01435306a36e4e75671fbe7bacea351f89947d5

   ok jca@
VersionDeltaFile
1.2+173-0editors/emacs/patches/patch-src_treesit_c
1.1+22-0editors/emacs/patches/patch-test_src_treesit-tests_el
1.129+1-1editors/emacs/Makefile
+196-13 files

OpenBSD/src Drf4H7dusr.bin/tmux status.c tmux.h

   Do not cache format for status line because it stores various pointers
   that might be stale, instead cache the cmd_find_state and rebuild the
   formats every time they are needed. Reported by Marcel Partap in GitHub
   isue 5065.
VersionDeltaFile
1.263+35-20usr.bin/tmux/status.c
1.1312+2-2usr.bin/tmux/tmux.h
+37-222 files

LLVM/project c4366f7llvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV bfloat-maximum-minimum.ll half-maximum-minimum.ll

[llvm][RISCV] Promote fminimum and fmaximum on zfhmin/zfbfmin (#194815)
DeltaFile
+119-0llvm/test/CodeGen/RISCV/bfloat-maximum-minimum.ll
+99-0llvm/test/CodeGen/RISCV/half-maximum-minimum.ll
+10-9llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+228-93 files

LLVM/project 29fba95llvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV/rvv fixed-vectors-reduction-fp.ll vreductions-fp-sdnode-f16.ll

[llvm][RISCV] Promote VECREDUCE_FADD to f32 on zvfhmin and zvfbfmin (#194587)
DeltaFile
+4,634-367llvm/test/CodeGen/RISCV/rvv/fixed-vectors-reduction-fp.ll
+84-0llvm/test/CodeGen/RISCV/rvv/vreductions-fp-sdnode-f16.ll
+60-0llvm/test/CodeGen/RISCV/rvv/vreductions-fp-sdnode-bf16.ll
+2-0llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+4,780-3674 files

OPNSense/tools 6701a0econfig/26.1 make.conf

config: this was changed recently
DeltaFile
+1-1config/26.1/make.conf
+1-11 files

OpenBSD/ports t0doPYosysutils/terragrunt distinfo Makefile

   Update to terragrunt-1.0.4.
VersionDeltaFile
1.390+6-2sysutils/terragrunt/distinfo
1.397+1-1sysutils/terragrunt/Makefile
1.108+1-0sysutils/terragrunt/modules.inc
+8-33 files

OpenBSD/ports 47LjCnxsysutils/amazon-ssm-agent distinfo Makefile

   Update to amazon-ssm-agent-3.3.4364.0.
VersionDeltaFile
1.169+2-2sysutils/amazon-ssm-agent/distinfo
1.183+1-1sysutils/amazon-ssm-agent/Makefile
+3-32 files

OpenBSD/ports K22Vf3Fsecurity/libgpg-error Makefile distinfo

   Update to libgpg-error-1.61.
VersionDeltaFile
1.75+2-2security/libgpg-error/Makefile
1.54+2-2security/libgpg-error/distinfo
+4-42 files

OpenBSD/ports U1aQNUyproductivity/libphonenumber distinfo Makefile

   Update to libphonenumber-9.0.30.
VersionDeltaFile
1.86+2-2productivity/libphonenumber/distinfo
1.97+1-1productivity/libphonenumber/Makefile
+3-32 files

OpenBSD/ports SP1RX7Xprint/psutils distinfo Makefile

   Update to psutils-3.3.15.
VersionDeltaFile
1.43+2-2print/psutils/distinfo
1.89+1-1print/psutils/Makefile
+3-32 files

OpenBSD/ports 3ibflevgraphics/openjph distinfo Makefile

   Update to openjph-0.27.1.
VersionDeltaFile
1.14+2-2graphics/openjph/distinfo
1.15+1-1graphics/openjph/Makefile
+3-32 files

LLVM/project 270bb33clang/lib/Headers sifive_vector.h riscv_bitmanip.h, clang/test/Preprocessor riscv-intrinsic-exts.c

[llvm][RISCV] Missing shorthand intrinsic macro (#195791)
DeltaFile
+3-1clang/test/Preprocessor/riscv-intrinsic-exts.c
+1-0clang/lib/Headers/sifive_vector.h
+1-0clang/lib/Headers/riscv_bitmanip.h
+5-13 files

OpenBSD/src QrIUaa8usr.bin/patch pch.c

   Solve an infinite loop on malformed ed script input

   OK kirill
VersionDeltaFile
1.67+8-1usr.bin/patch/pch.c
+8-11 files

OpenBSD/src 143pua1sys/net pf_lb.c

   pf(4): load balancer rpool->weight is never zero, state that
   explicitly in code to make future reviews more smooth.

   OK @deraadt
VersionDeltaFile
1.77+9-1sys/net/pf_lb.c
+9-11 files

FreeBSD/ports 91dbc77www/iridium distinfo Makefile

www/iridium: bump and regen distinfo after devel/esbuild update

PR:     295079
DeltaFile
+3-3www/iridium/distinfo
+1-1www/iridium/Makefile
+4-42 files

FreeBSD/ports f952072www/chromium/files patch-chrome_browser_about__flags.cc patch-third__party_libsync_src_sync.c

www/chromium: update to 148.0.7778.96

Security:       https://vuxml.freebsd.org/freebsd/da4d7162-4aa3-11f1-b189-a8a1599412c6.html
PR:             294915, 294916, 294919, 295079
DeltaFile
+84-110www/chromium/files/patch-chrome_browser_about__flags.cc
+181-0www/chromium/files/patch-third__party_libsync_src_sync.c
+98-0www/chromium/files/patch-third__party_libvpx_source_config_linux_arm64_vpx__dsp__rtcd.h
+31-40www/chromium/files/patch-third__party_blink_renderer_platform_runtime__enabled__features.json5
+31-31www/chromium/files/patch-chrome_browser_policy_configuration__policy__handler__list__factory.cc
+38-20www/chromium/files/patch-chrome_browser_profiles_chrome__browser__main__extra__parts__profiles.cc
+463-201405 files not shown
+2,824-1,821411 files

FreeBSD/ports 2adcf0asecurity/vuxml/vuln 2026.xml

security/vuxml: add www/*chromium < 148.0.7778.96

Obtained from:  https://chromereleases.googleblog.com/2026/05/stable-channel-update-for-desktop.html
DeltaFile
+285-0security/vuxml/vuln/2026.xml
+285-01 files

NetBSD/pkgsrc-wip ea6af4aemacs-git Makefile distinfo, emacs-git/patches patch-configure.ac

emacs-git: version bumped to 32
DeltaFile
+13-0emacs-git/patches/patch-configure.ac
+2-2emacs-git/Makefile
+3-0emacs-git/distinfo
+1-0emacs-git/PLIST
+19-24 files

NetBSD/pkgsrc-wip 0589800p5-Selenium-Remote-Driver/Files testing-by-Firefox Firefox-test

(www/p5-Selenium-Remote-Driver) Rename to Files/testing-by-Firefox
DeltaFile
+12-0p5-Selenium-Remote-Driver/Files/testing-by-Firefox
+0-12p5-Selenium-Remote-Driver/Files/Firefox-test
+12-122 files

NetBSD/pkgsrc-wip d90bc26p5-Selenium-Remote-Driver DESCR Makefile

(www/p5-Selenium-Remote-Driver) update DESCR, correction to PKG_NAME
DeltaFile
+15-1p5-Selenium-Remote-Driver/DESCR
+1-0p5-Selenium-Remote-Driver/Makefile
+16-12 files

LLVM/project 72860cdclang/test/CIR/CodeGenBuiltins builtins-elementwise.c builtin-signbit.c

[CIR][NFC] Merge duplicate checks in CodeGenBuiltins tests (#196224)
DeltaFile
+1-112clang/test/CIR/CodeGenBuiltins/builtins-elementwise.c
+1-41clang/test/CIR/CodeGenBuiltins/builtin-signbit.c
+1-19clang/test/CIR/CodeGenBuiltins/builtin-object-size.cpp
+1-13clang/test/CIR/CodeGenBuiltins/builtins-pred-info.c
+1-7clang/test/CIR/CodeGenBuiltins/builtin-memchr.c
+1-6clang/test/CIR/CodeGenBuiltins/builtins.cpp
+6-1981 files not shown
+7-2017 files

OpenBSD/ports YNuGb11www/chromium/patches patch-chrome_browser_about_flags_cc patch-third_party_libsync_src_sync_c

   update to 148.0.7778.96
VersionDeltaFile
1.151+83-109www/chromium/patches/patch-chrome_browser_about_flags_cc
1.7+170-14www/chromium/patches/patch-third_party_libsync_src_sync_c
1.63+30-39www/chromium/patches/patch-third_party_blink_renderer_platform_runtime_enabled_features_json5
1.79+30-30www/chromium/patches/patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc
1.77+37-19www/chromium/patches/patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc
1.1+48-0www/chromium/patches/patch-third_party_cpuinfo_BUILD_gn
+398-211401 files not shown
+2,326-1,341407 files