mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
Auto merge of #132352 - DianQK:llvm/19.1.3, r=nikic
Update LLVM to 19.1.3 Closes #131031. r? nikic
This commit is contained in:
commit
b5f4883a06
@ -1 +1 @@
|
|||||||
Subproject commit 3a17f74904a74565c54cfac0d67026362d038698
|
Subproject commit b35599be758613448201a49f4b8c7ebfba5558ac
|
12
tests/ui/target-feature/wasm-disable-simd.rs
Normal file
12
tests/ui/target-feature/wasm-disable-simd.rs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
//@ only-wasm32-wasip1
|
||||||
|
//@ compile-flags: -Ctarget-feature=-simd128 --crate-type=lib
|
||||||
|
//@ build-pass
|
||||||
|
|
||||||
|
// This is a regression test of #131031.
|
||||||
|
|
||||||
|
use std::arch::wasm32::*;
|
||||||
|
|
||||||
|
#[target_feature(enable = "simd128")]
|
||||||
|
pub unsafe fn some_simd128_fn(chunk: v128) -> bool {
|
||||||
|
u8x16_all_true(chunk)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user