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

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

57 lines
2.2 KiB
Plaintext
Raw Normal View History

error: the `nomem` option was already provided
--> $DIR/duplicate-options.rs:9:33
|
LL | asm!("", options(nomem, nomem));
| ^^^^^ this option was already provided
error: the `preserves_flags` option was already provided
--> $DIR/duplicate-options.rs:11:43
|
LL | asm!("", options(preserves_flags, preserves_flags));
| ^^^^^^^^^^^^^^^ this option was already provided
error: the `nostack` option was already provided
--> $DIR/duplicate-options.rs:13:61
|
LL | asm!("", options(nostack, preserves_flags), options(nostack));
| ^^^^^^^ this option was already provided
error: the `nostack` option was already provided
--> $DIR/duplicate-options.rs:15:35
|
LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
| ^^^^^^^ this option was already provided
error: the `nostack` option was already provided
--> $DIR/duplicate-options.rs:15:53
|
LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
| ^^^^^^^ this option was already provided
error: the `nostack` option was already provided
--> $DIR/duplicate-options.rs:15:71
|
LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
| ^^^^^^^ this option was already provided
2020-06-16 14:03:19 -05:00
error: the `noreturn` option was already provided
--> $DIR/duplicate-options.rs:22:38
2020-06-16 14:03:19 -05:00
|
LL | options(preserves_flags, noreturn),
| ^^^^^^^^ this option was already provided
2020-06-16 14:03:19 -05:00
error: the `nomem` option was already provided
--> $DIR/duplicate-options.rs:23:21
2020-06-16 14:03:19 -05:00
|
LL | options(nomem, nostack),
| ^^^^^ this option was already provided
2020-06-16 14:03:19 -05:00
error: the `noreturn` option was already provided
--> $DIR/duplicate-options.rs:24:21
2020-06-16 14:03:19 -05:00
|
LL | options(noreturn),
| ^^^^^^^^ this option was already provided
2020-06-16 14:03:19 -05:00
error: aborting due to 9 previous errors