Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions crates/intrinsic-test/src/arm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,6 @@ impl SupportedArchitecture for Arm {
// zeroed vectors in Rust, which are inherently going to be different than the
// undefined vectors returned by the C intrinsics.
.filter(|i| !i.name.starts_with("svundef"))
// Skip `sveorv` intrinsics - the code produced by `intrinsic-test` for these
// miscompiles and the Rust intrinsic call gets replaced by a constant zero (see
// llvm/llvm-project#203921).
.filter(|i| !i.name.starts_with("sveorv"))
// These load intrinsics expect each element in the scalable vector `bases` argument to
// be able to be cast to a pointer, which we don't support generating tests for yet.
.filter(|i| !(i.name.starts_with("svld") && i.name.contains("_gather_")))
Expand Down
Loading