rust/tests/ui/asm/x86_64/issue-82869.rs

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

26 lines
558 B
Rust
Raw Normal View History

// needs-asm-support
2021-03-14 18:19:16 -05:00
// only-x86_64
// Make sure rustc doesn't ICE on asm! for a foreign architecture.
#![crate_type = "rlib"]
use std::arch::asm;
2021-03-14 18:19:16 -05:00
pub unsafe fn aarch64(a: f64, b: f64) -> f64 {
let c;
asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d0") {
|| {};
b
});
//~^^^^ invalid register class
//~^^^^^ invalid register class
//~^^^^^^ invalid register
c
}
pub unsafe fn x86(a: f64, b: f64) -> f64 {
let c;
asm!("addsd {}, {}, xmm0", out(xmm_reg) c, in(xmm_reg) a, in("xmm0") b);
c
}