]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/x86_64/bad-clobber-abi.stderr
Auto merge of #98471 - wesleywiser:update_measureme, r=Mark-Simulacrum
[rust.git] / src / test / ui / asm / x86_64 / bad-clobber-abi.stderr
1 error: invalid ABI for `clobber_abi`
2   --> $DIR/bad-clobber-abi.rs:11:18
3    |
4 LL |         asm!("", clobber_abi("foo"));
5    |                  ^^^^^^^^^^^^^^^^^^
6    |
7    = note: the following ABIs are supported on this target: `C`, `system`, `efiapi`, `win64`, `sysv64`
8
9 error: invalid ABI for `clobber_abi`
10   --> $DIR/bad-clobber-abi.rs:13:35
11    |
12 LL |         asm!("", clobber_abi("C", "foo"));
13    |                                   ^^^^^
14    |
15    = note: the following ABIs are supported on this target: `C`, `system`, `efiapi`, `win64`, `sysv64`
16
17 error: `C` ABI specified multiple times
18   --> $DIR/bad-clobber-abi.rs:15:35
19    |
20 LL |         asm!("", clobber_abi("C", "C"));
21    |                              ---  ^^^
22    |                              |
23    |                              previously specified here
24
25 error: `win64` ABI specified multiple times
26   --> $DIR/bad-clobber-abi.rs:18:39
27    |
28 LL |         asm!("", clobber_abi("win64", "efiapi"));
29    |                              -------  ^^^^^^^^
30    |                              |
31    |                              previously specified here
32    |
33    = note: these ABIs are equivalent on the current target
34
35 error: invalid ABI for `clobber_abi`
36   --> $DIR/bad-clobber-abi.rs:20:35
37    |
38 LL |         asm!("", clobber_abi("C", "foo", "C"));
39    |                                   ^^^^^
40    |
41    = note: the following ABIs are supported on this target: `C`, `system`, `efiapi`, `win64`, `sysv64`
42
43 error: `C` ABI specified multiple times
44   --> $DIR/bad-clobber-abi.rs:20:42
45    |
46 LL |         asm!("", clobber_abi("C", "foo", "C"));
47    |                              ---         ^^^
48    |                              |
49    |                              previously specified here
50
51 error: invalid ABI for `clobber_abi`
52   --> $DIR/bad-clobber-abi.rs:23:39
53    |
54 LL |         asm!("", clobber_abi("win64", "foo", "efiapi"));
55    |                                       ^^^^^
56    |
57    = note: the following ABIs are supported on this target: `C`, `system`, `efiapi`, `win64`, `sysv64`
58
59 error: `win64` ABI specified multiple times
60   --> $DIR/bad-clobber-abi.rs:23:46
61    |
62 LL |         asm!("", clobber_abi("win64", "foo", "efiapi"));
63    |                              -------         ^^^^^^^^
64    |                              |
65    |                              previously specified here
66    |
67    = note: these ABIs are equivalent on the current target
68
69 error: `C` ABI specified multiple times
70   --> $DIR/bad-clobber-abi.rs:26:36
71    |
72 LL |         asm!("", clobber_abi("C"), clobber_abi("C"));
73    |                  ----------------  ^^^^^^^^^^^^^^^^
74    |                  |
75    |                  previously specified here
76
77 error: `win64` ABI specified multiple times
78   --> $DIR/bad-clobber-abi.rs:29:40
79    |
80 LL |         asm!("", clobber_abi("win64"), clobber_abi("efiapi"));
81    |                  --------------------  ^^^^^^^^^^^^^^^^^^^^^
82    |                  |
83    |                  previously specified here
84    |
85    = note: these ABIs are equivalent on the current target
86
87 error: aborting due to 10 previous errors
88