mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
10 lines
125 B
Rust
10 lines
125 B
Rust
//@ known-bug: #134334
|
|
//@ only-x86_64
|
|
|
|
#[repr(simd)]
|
|
struct A();
|
|
|
|
fn main() {
|
|
std::arch::asm!("{}", in(xmm_reg) A());
|
|
}
|