11error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target
2- --> $DIR/unsupported.rs:24 :1
2+ --> $DIR/unsupported.rs:26 :1
33 |
44LL | extern "ptx-kernel" fn ptx() {}
55 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
77error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
8- --> $DIR/unsupported.rs:26 :1
8+ --> $DIR/unsupported.rs:28 :1
99 |
1010LL | extern "amdgpu-kernel" fn amdgpu() {}
1111 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212
1313error[E0570]: `"wasm"` is not a supported ABI for the current target
14- --> $DIR/unsupported.rs:28 :1
14+ --> $DIR/unsupported.rs:30 :1
1515 |
1616LL | extern "wasm" fn wasm() {}
1717 | ^^^^^^^^^^^^^^^^^^^^^^^
1818
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+
1925error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
20- --> $DIR/unsupported.rs:33 :1
26+ --> $DIR/unsupported.rs:36 :1
2127 |
2228LL | extern "msp430-interrupt" fn msp430() {}
2329 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2430
2531error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
26- --> $DIR/unsupported.rs:35 :1
32+ --> $DIR/unsupported.rs:38 :1
2733 |
2834LL | extern "avr-interrupt" fn avr() {}
2935 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3036
3137error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target
32- --> $DIR/unsupported.rs:37 :1
38+ --> $DIR/unsupported.rs:40 :1
3339 |
3440LL | extern "x86-interrupt" fn x86() {}
3541 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3642
3743warning: use of calling convention not supported on this target
38- --> $DIR/unsupported.rs:39 :1
44+ --> $DIR/unsupported.rs:43 :1
3945 |
4046LL | extern "stdcall" fn stdcall() {}
4147 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -45,14 +51,14 @@ LL | extern "stdcall" fn stdcall() {}
4551 = note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678>
4652
4753warning: use of calling convention not supported on this target
48- --> $DIR/unsupported.rs:44 :1
54+ --> $DIR/unsupported.rs:50 :1
4955 |
5056LL | extern "thiscall" fn thiscall() {}
5157 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5258 |
5359 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
5460 = note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678>
5561
56- error: aborting due to 6 previous errors; 2 warnings emitted
62+ error: aborting due to 7 previous errors; 2 warnings emitted
5763
5864For more information about this error, try `rustc --explain E0570`.
0 commit comments