32 lines
658 B
Rust
32 lines
658 B
Rust
//@ compile-flags: --target arm64ec-pc-windows-msvc
|
|
//@ needs-asm-support
|
|
//@ needs-llvm-components: aarch64
|
|
|
|
#![crate_type = "rlib"]
|
|
#![feature(no_core, rustc_attrs, lang_items, asm_experimental_arch)]
|
|
#![no_core]
|
|
|
|
// SVE cannot be used for Arm64EC
|
|
// https://github.com/rust-lang/rust/pull/131332#issuecomment-2401189142
|
|
|
|
#[lang = "sized"]
|
|
trait Sized {}
|
|
#[lang = "copy"]
|
|
trait Copy {}
|
|
|
|
impl Copy for f64 {}
|
|
|
|
#[rustc_builtin_macro]
|
|
macro_rules! asm {
|
|
() => {};
|
|
}
|
|
|
|
fn f(x: f64) {
|
|
unsafe {
|
|
asm!("", out("p0") _);
|
|
//~^ ERROR cannot use register `p0`
|
|
asm!("", out("ffr") _);
|
|
//~^ ERROR cannot use register `ffr`
|
|
}
|
|
}
|