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:
bors 2024-11-02 04:59:26 +00:00
commit b5f4883a06
2 changed files with 13 additions and 1 deletions

@ -1 +1 @@
Subproject commit 3a17f74904a74565c54cfac0d67026362d038698
Subproject commit b35599be758613448201a49f4b8c7ebfba5558ac

View 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)
}