|
1 | 1 | error: the `nomem` option was already provided
|
2 |
| - --> $DIR/duplicate-options.rs:7:33 |
| 2 | + --> $DIR/duplicate-options.rs:8:33 |
3 | 3 | |
|
4 | 4 | LL | asm!("", options(nomem, nomem));
|
5 | 5 | | ^^^^^ help: remove this option
|
6 | 6 |
|
7 | 7 | error: the `att_syntax` option was already provided
|
8 |
| - --> $DIR/duplicate-options.rs:9:38 |
| 8 | + --> $DIR/duplicate-options.rs:10:38 |
9 | 9 | |
|
10 | 10 | LL | asm!("", options(att_syntax, att_syntax));
|
11 | 11 | | ^^^^^^^^^^ help: remove this option
|
12 | 12 |
|
13 | 13 | error: the `nostack` option was already provided
|
14 |
| - --> $DIR/duplicate-options.rs:11:56 |
| 14 | + --> $DIR/duplicate-options.rs:12:56 |
15 | 15 | |
|
16 | 16 | LL | asm!("", options(nostack, att_syntax), options(nostack));
|
17 | 17 | | ^^^^^^^ help: remove this option
|
18 | 18 |
|
19 | 19 | error: the `nostack` option was already provided
|
20 |
| - --> $DIR/duplicate-options.rs:13:35 |
| 20 | + --> $DIR/duplicate-options.rs:14:35 |
21 | 21 | |
|
22 | 22 | LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
|
23 | 23 | | ^^^^^^^ help: remove this option
|
24 | 24 |
|
25 | 25 | error: the `nostack` option was already provided
|
26 |
| - --> $DIR/duplicate-options.rs:13:53 |
| 26 | + --> $DIR/duplicate-options.rs:14:53 |
27 | 27 | |
|
28 | 28 | LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
|
29 | 29 | | ^^^^^^^ help: remove this option
|
30 | 30 |
|
31 | 31 | error: the `nostack` option was already provided
|
32 |
| - --> $DIR/duplicate-options.rs:13:71 |
| 32 | + --> $DIR/duplicate-options.rs:14:71 |
33 | 33 | |
|
34 | 34 | LL | asm!("", options(nostack, nostack), options(nostack), options(nostack));
|
35 | 35 | | ^^^^^^^ help: remove this option
|
36 | 36 |
|
37 | 37 | error: the `noreturn` option was already provided
|
38 |
| - --> $DIR/duplicate-options.rs:20:33 |
| 38 | + --> $DIR/duplicate-options.rs:21:33 |
39 | 39 | |
|
40 | 40 | LL | options(att_syntax, noreturn),
|
41 | 41 | | ^^^^^^^^ help: remove this option
|
42 | 42 |
|
43 | 43 | error: the `nomem` option was already provided
|
44 |
| - --> $DIR/duplicate-options.rs:21:21 |
| 44 | + --> $DIR/duplicate-options.rs:22:21 |
45 | 45 | |
|
46 | 46 | LL | options(nomem, nostack),
|
47 |
| - | ^^^^^ help: remove this option |
| 47 | + | ^^^^^^ help: remove this option |
48 | 48 |
|
49 | 49 | error: the `noreturn` option was already provided
|
50 |
| - --> $DIR/duplicate-options.rs:22:21 |
| 50 | + --> $DIR/duplicate-options.rs:23:21 |
51 | 51 | |
|
52 | 52 | LL | options(noreturn),
|
53 | 53 | | ^^^^^^^^ help: remove this option
|
|
0 commit comments