mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
8 lines
146 B
Rust
8 lines
146 B
Rust
//@ known-bug: rust-lang/rust#129150
|
|
//@ only-x86_64
|
|
use std::arch::x86_64::_mm_blend_ps;
|
|
|
|
pub fn main() {
|
|
_mm_blend_ps(1, 2, &const {} );
|
|
}
|