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