Skip to content

Commit b5f4883

Browse files
committed
Auto merge of #132352 - DianQK:llvm/19.1.3, r=nikic
Update LLVM to 19.1.3 Closes #131031. r? nikic
2 parents ef972a3 + ebeaaad commit b5f4883

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

src/llvm-project

Submodule llvm-project updated 112 files
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//@ only-wasm32-wasip1
2+
//@ compile-flags: -Ctarget-feature=-simd128 --crate-type=lib
3+
//@ build-pass
4+
5+
// This is a regression test of #131031.
6+
7+
use std::arch::wasm32::*;
8+
9+
#[target_feature(enable = "simd128")]
10+
pub unsafe fn some_simd128_fn(chunk: v128) -> bool {
11+
u8x16_all_true(chunk)
12+
}

0 commit comments

Comments
 (0)