1
1
error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target
2
- --> $DIR/unsupported.rs:30 :1
2
+ --> $DIR/unsupported.rs:29 :1
3
3
|
4
4
LL | extern "ptx-kernel" fn ptx() {}
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
6
7
- error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
8
- --> $DIR/unsupported.rs:32:1
9
- |
10
- LL | extern "amdgpu-kernel" fn amdgpu() {}
11
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
-
13
7
error[E0570]: `"wasm"` is not a supported ABI for the current target
14
- --> $DIR/unsupported.rs:34 :1
8
+ --> $DIR/unsupported.rs:31 :1
15
9
|
16
10
LL | extern "wasm" fn wasm() {}
17
11
| ^^^^^^^^^^^^^^^^^^^^^^^
18
12
19
13
error[E0570]: `"aapcs"` is not a supported ABI for the current target
20
- --> $DIR/unsupported.rs:36 :1
14
+ --> $DIR/unsupported.rs:33 :1
21
15
|
22
16
LL | extern "aapcs" fn aapcs() {}
23
17
| ^^^^^^^^^^^^^^^^^^^^^^^^^
24
18
25
19
error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
26
- --> $DIR/unsupported.rs:42 :1
20
+ --> $DIR/unsupported.rs:39 :1
27
21
|
28
22
LL | extern "msp430-interrupt" fn msp430() {}
29
23
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30
24
31
25
error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
32
- --> $DIR/unsupported.rs:44 :1
26
+ --> $DIR/unsupported.rs:41 :1
33
27
|
34
28
LL | extern "avr-interrupt" fn avr() {}
35
29
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
36
30
37
31
error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current target
38
- --> $DIR/unsupported.rs:46 :1
32
+ --> $DIR/unsupported.rs:43 :1
39
33
|
40
34
LL | extern "riscv-interrupt-m" fn riscv() {}
41
35
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42
36
43
37
error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target
44
- --> $DIR/unsupported.rs:51 :1
38
+ --> $DIR/unsupported.rs:48 :1
45
39
|
46
40
LL | extern "x86-interrupt" fn x86() {}
47
41
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
48
42
49
43
error[E0570]: `"thiscall"` is not a supported ABI for the current target
50
- --> $DIR/unsupported.rs:56 :1
44
+ --> $DIR/unsupported.rs:53 :1
51
45
|
52
46
LL | extern "thiscall" fn thiscall() {}
53
47
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
54
48
55
49
warning: use of calling convention not supported on this target
56
- --> $DIR/unsupported.rs:62 :1
50
+ --> $DIR/unsupported.rs:59 :1
57
51
|
58
52
LL | extern "stdcall" fn stdcall() {}
59
53
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -62,6 +56,6 @@ LL | extern "stdcall" fn stdcall() {}
62
56
= note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678>
63
57
= note: `#[warn(unsupported_calling_conventions)]` on by default
64
58
65
- error: aborting due to 9 previous errors; 1 warning emitted
59
+ error: aborting due to 8 previous errors; 1 warning emitted
66
60
67
61
For more information about this error, try `rustc --explain E0570`.
0 commit comments