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

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

63 lines
2.4 KiB
Plaintext
Raw Normal View History

error: the `nomem` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:8:33
|
LL | asm!("", options(nomem, nomem));
| ^^^^^ this option was already provided
error: the `att_syntax` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:10:38
|
LL | asm!("", options(att_syntax, att_syntax));
| ^^^^^^^^^^ this option was already provided
error: the `nostack` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:12:56
|
LL | asm!("", options(nostack, att_syntax), options(nostack));
| ^^^^^^^ this option was already provided
error: the `nostack` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:14:35
|
LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
| ^^^^^^^ this option was already provided
error: the `nostack` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:14:53
|
LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
| ^^^^^^^ this option was already provided
error: the `nostack` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:14: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
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:21:33
2020-06-16 14:03:19 -05:00
|
LL | options(att_syntax, noreturn),
| ^^^^^^^^ this option was already provided
2020-06-16 14:03:19 -05:00
error: the `nomem` option was already provided
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:22: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
2020-06-16 14:32:13 -05:00
--> $DIR/duplicate-options.rs:23: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
2021-04-13 12:11:11 -05:00
error: the `att_syntax` option was already provided
--> $DIR/duplicate-options.rs:28:37
|
LL | global_asm!("", options(att_syntax, att_syntax));
| ^^^^^^^^^^ this option was already provided
error: aborting due to 10 previous errors