Account for the ctl test needing the ctl(4) module
This testcase does not function unless the /dev/ctl/... node exists,
which is created by the ctl(4) module. Require the ctl(4) module to be
loaded so the test can be executed.
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D54518
[AArch64][SME] Use LibcallLoweringInfo in the MachineSMEABIPass (#177762)
This adds a new helper to add calls to SME routines (addSMELibCall) and
check they are using the expected CC.
---------
Co-authored-by: Matt Arsenault <arsenm2 at gmail.com>
[clang-tidy] Add llvm-use-vector-utils (#177722)
This new check suggests the following replacements:
* `llvm::to_vector(llvm::map_range(X, Fn))` -> `llvm::map_to_vector(X,
Fn)`
* `llvm::to_vector(llvm::make_filter_range(X, Fn))` ->
`llvm::filter_to_vector(X, Fn)`
and add the `SmallVectorExtras.h` include when necessary.
The check is called `vector-utils` because we may want to handle more
cases in the future, like turning explicit calls to SmallVector
constructor to `llvm::to_vector` (which lives in `SmallVector.h`, not
`SmallVectorExtras.h`).
Assisted-by: claude
sync RDEPs in py-test-astropy with upstream, which drops py-test-openfiles
that was only ever used for py-test-astropy, so merge it in via @pkgpath @conflict
ure: fix some speed checks and enable 32K RX buffers when possible
1) Adjust some USB speed tests for correct handling of USB_SPEED_LOW
and USB_SPEED_SUPER_PLUS.
2) On 8153, with >= USB_SPEED_SUPER, we can use 32K RX buffers, so do it.
SystemZ: Use correctly offset MachinePointerInfo in CC lowering (#177793)
Previously this was just using the original base address as
the pointer info.