Revert "[IR] Add initial support for the byte type" (#186713)
Reverts llvm/llvm-project#178666 to unblock CI.
`CodeGen/X86/byte-constants.ll` is at fault.
Will look into it and hopefully fix it by tomorrow.
zfs: Fix build after merge of openzfs/zfs at f8e5af53e
The change causing it is the introduction of the test over __BMI2__ in
'module/zstd/lib/common/bitstream.h'.
This is a stop-gap commit whose content needs to be upstreamed (after
possibly having been improved).
Fixes: 8a62a2a5659d ("zfs: merge openzfs/zfs at f8e5af53e")
Sponsored by: The FreeBSD Foundation
net/openldap26-server: update to 2.6.13.
While I'm there also address the following issues:
- Add nssov overlay (PR 293531)
- Add an option to delay slapd startup (PR 280849)
- Support PREFIX/openldap/slapd.d/cn=config/olcDatabase=* as directory
(PR 261792 / 258418)
PR: 258418, 261792, 280849, 293531
multimedia/ffmpeg6: upgrade to 6.1.4
Since this is a legacy version only intended to be used as a dependency
remove the options: only the previously default options are kept.
PR: 278913
net/curl: update to 8.19.0
Includes fixes for
CVE-2025-14524: bearer token leak on cross-protocol redirect
CVE-2025-14819: OpenSSL partial chain store policy bypass
CVE-2026-1965: bad reuse of HTTP Negotiate connection
CVE-2026-3783: token leak with redirect and netrc
CVE-2026-3784: wrong proxy connection reuse with credentials
CVE-2026-3805: use after free in SMB connection reuse
[orc-rt] Don't return Error in Service::OnComplete. (#186708)
The Session can't do anything useful with these errors, it can only
report them. It's cleaner if the Service objects just report the error
directly.
databases/postgresql*-*: Revert "Update to latest version"
This restores databases/postgresql13-*, unbreaking the quarterly tree.
Please do not remove ports from quarterly if possible and if you do,
please test that the removal doesn't break anything!
Approved by: portmgr (build fix blanket)
Reported by: antoine
This reverts commit 7a01ab5cf6ffa91eae6cf6a372db56978608b2db.
[IR] Add initial support for the byte type (#178666)
Following the [byte type RFC](https://discourse.llvm.org/t/rfc-add-a-new-byte-type-to-llvm-ir/89522)
and the discussions within the [LLVM IR Formal Specification WG](https://discourse.llvm.org/t/rfc-forming-a-working-group-on-formal-specification-for-llvm/89056), this PR introduces initial support for the byte type in LLVM. This PR:
- Adds the byte type to LLVM's type system
- Extends the `bitcast` instruction to accept the byte operands
- Adds parsing tests for all new functionality
- Fixes failing regressions tests (IR2Vec and IRNormalizer)
---------
Co-authored-by: George Mitenkov <georgemitenk0v at gmail.com>