mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
246 B
Rust
13 lines
246 B
Rust
//@ known-bug: #123077
|
|
//@ only-x86_64
|
|
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() {}
|