mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 05:59:17 +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());
|
|
}
|