rust/tests/ui/asm/aarch64/duplicate-options.rs

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

28 lines
1.1 KiB
Rust
Raw Normal View History

// only-aarch64
// needs-asm-support
2020-06-16 14:32:13 -05:00
// run-rustfix
use std::arch::asm;
fn main() {
unsafe {
asm!("", options(nomem, nomem));
//~^ ERROR the `nomem` option was already provided
asm!("", options(preserves_flags, preserves_flags));
//~^ ERROR the `preserves_flags` option was already provided
asm!("", options(nostack, preserves_flags), options(nostack));
//~^ ERROR the `nostack` option was already provided
asm!("", options(nostack, nostack), options(nostack), options(nostack));
//~^ ERROR the `nostack` option was already provided
//~| ERROR the `nostack` option was already provided
//~| ERROR the `nostack` option was already provided
2020-06-16 14:03:19 -05:00
asm!(
"",
options(nomem, noreturn),
options(preserves_flags, noreturn), //~ ERROR the `noreturn` option was already provided
options(nomem, nostack), //~ ERROR the `nomem` option was already provided
options(noreturn), //~ ERROR the `noreturn` option was already provided
2020-06-16 14:03:19 -05:00
);
}
}