mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-18 18:04:13 +00:00
12 lines
230 B
Rust
12 lines
230 B
Rust
![]() |
//@ known-bug: #123077
|
||
|
use std::arch::x86_64::{__m128, _mm_blend_ps};
|
||
|
|
||
|
pub fn sse41_blend_noinline( ) -> __m128 {
|
||
|
let f = { |x, y| unsafe {
|
||
|
_mm_blend_ps(x, y, { |x, y| unsafe })
|
||
|
}};
|
||
|
f(x, y)
|
||
|
}
|
||
|
|
||
|
pub fn main() {}
|