rust/tests/crashes/134334.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
125 B
Rust
Raw Normal View History

2024-12-15 15:42:00 +00:00
//@ known-bug: #134334
//@ only-x86_64
#[repr(simd)]
struct A();
fn main() {
std::arch::asm!("{}", in(xmm_reg) A());
}