|
1 | 1 | error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target
|
2 |
| - --> $DIR/unsupported.rs:28:1 |
| 2 | + --> $DIR/unsupported.rs:34:15 |
| 3 | + | |
| 4 | +LL | fn ptx_ptr(f: extern "ptx-kernel" fn()) { |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 6 | + |
| 7 | +error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target |
| 8 | + --> $DIR/unsupported.rs:38:1 |
| 9 | + | |
| 10 | +LL | extern "ptx-kernel" {} |
| 11 | + | ^^^^^^^^^^^^^^^^^^^^^^ |
| 12 | + |
| 13 | +error[E0570]: `"aapcs"` is not a supported ABI for the current target |
| 14 | + --> $DIR/unsupported.rs:47:17 |
| 15 | + | |
| 16 | +LL | fn aapcs_ptr(f: extern "aapcs" fn()) { |
| 17 | + | ^^^^^^^^^^^^^^^^^^^ |
| 18 | + |
| 19 | +error[E0570]: `"aapcs"` is not a supported ABI for the current target |
| 20 | + --> $DIR/unsupported.rs:55:1 |
| 21 | + | |
| 22 | +LL | extern "aapcs" {} |
| 23 | + | ^^^^^^^^^^^^^^^^^ |
| 24 | + |
| 25 | +error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target |
| 26 | + --> $DIR/unsupported.rs:64:18 |
| 27 | + | |
| 28 | +LL | fn msp430_ptr(f: extern "msp430-interrupt" fn()) { |
| 29 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 30 | + |
| 31 | +error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target |
| 32 | + --> $DIR/unsupported.rs:68:1 |
| 33 | + | |
| 34 | +LL | extern "msp430-interrupt" {} |
| 35 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 36 | + |
| 37 | +error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target |
| 38 | + --> $DIR/unsupported.rs:73:15 |
| 39 | + | |
| 40 | +LL | fn avr_ptr(f: extern "avr-interrupt" fn()) { |
| 41 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 42 | + |
| 43 | +error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target |
| 44 | + --> $DIR/unsupported.rs:77:1 |
| 45 | + | |
| 46 | +LL | extern "avr-interrupt" {} |
| 47 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 48 | + |
| 49 | +error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current target |
| 50 | + --> $DIR/unsupported.rs:85:17 |
| 51 | + | |
| 52 | +LL | fn riscv_ptr(f: extern "riscv-interrupt-m" fn()) { |
| 53 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 54 | + |
| 55 | +error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current target |
| 56 | + --> $DIR/unsupported.rs:92:1 |
| 57 | + | |
| 58 | +LL | extern "riscv-interrupt-m" {} |
| 59 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 60 | + |
| 61 | +error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target |
| 62 | + --> $DIR/unsupported.rs:103:15 |
| 63 | + | |
| 64 | +LL | fn x86_ptr(f: extern "x86-interrupt" fn()) { |
| 65 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 66 | + |
| 67 | +error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target |
| 68 | + --> $DIR/unsupported.rs:110:1 |
| 69 | + | |
| 70 | +LL | extern "x86-interrupt" {} |
| 71 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 72 | + |
| 73 | +error[E0570]: `"thiscall"` is not a supported ABI for the current target |
| 74 | + --> $DIR/unsupported.rs:122:20 |
| 75 | + | |
| 76 | +LL | fn thiscall_ptr(f: extern "thiscall" fn()) { |
| 77 | + | ^^^^^^^^^^^^^^^^^^^^^^ |
| 78 | + |
| 79 | +error[E0570]: `"thiscall"` is not a supported ABI for the current target |
| 80 | + --> $DIR/unsupported.rs:130:1 |
| 81 | + | |
| 82 | +LL | extern "thiscall" {} |
| 83 | + | ^^^^^^^^^^^^^^^^^^^^ |
| 84 | + |
| 85 | +warning: use of calling convention not supported on this target |
| 86 | + --> $DIR/unsupported.rs:148:19 |
| 87 | + | |
| 88 | +LL | fn stdcall_ptr(f: extern "stdcall" fn()) { |
| 89 | + | ^^^^^^^^^^^^^^^^^^^^^ |
| 90 | + | |
| 91 | + = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! |
| 92 | + = note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678> |
| 93 | + = note: `#[warn(unsupported_calling_conventions)]` on by default |
| 94 | + |
| 95 | +warning: use of calling convention not supported on this target |
| 96 | + --> $DIR/unsupported.rs:161:1 |
| 97 | + | |
| 98 | +LL | extern "stdcall" {} |
| 99 | + | ^^^^^^^^^^^^^^^^^^^ |
| 100 | + | |
| 101 | + = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! |
| 102 | + = note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678> |
| 103 | + |
| 104 | +error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target |
| 105 | + --> $DIR/unsupported.rs:32:1 |
3 | 106 | |
|
4 | 107 | LL | extern "ptx-kernel" fn ptx() {}
|
5 | 108 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
6 | 109 |
|
7 | 110 | error[E0570]: `"aapcs"` is not a supported ABI for the current target
|
8 |
| - --> $DIR/unsupported.rs:30:1 |
| 111 | + --> $DIR/unsupported.rs:41:1 |
9 | 112 | |
|
10 | 113 | LL | extern "aapcs" fn aapcs() {}
|
11 | 114 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
12 | 115 |
|
13 | 116 | error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
|
14 |
| - --> $DIR/unsupported.rs:36:1 |
| 117 | + --> $DIR/unsupported.rs:62:1 |
15 | 118 | |
|
16 | 119 | LL | extern "msp430-interrupt" fn msp430() {}
|
17 | 120 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
18 | 121 |
|
19 | 122 | error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
|
20 |
| - --> $DIR/unsupported.rs:38:1 |
| 123 | + --> $DIR/unsupported.rs:71:1 |
21 | 124 | |
|
22 | 125 | LL | extern "avr-interrupt" fn avr() {}
|
23 | 126 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
24 | 127 |
|
25 | 128 | error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current target
|
26 |
| - --> $DIR/unsupported.rs:40:1 |
| 129 | + --> $DIR/unsupported.rs:80:1 |
27 | 130 | |
|
28 | 131 | LL | extern "riscv-interrupt-m" fn riscv() {}
|
29 | 132 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
30 | 133 |
|
31 | 134 | error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target
|
32 |
| - --> $DIR/unsupported.rs:45:1 |
| 135 | + --> $DIR/unsupported.rs:98:1 |
33 | 136 | |
|
34 | 137 | LL | extern "x86-interrupt" fn x86() {}
|
35 | 138 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
36 | 139 |
|
37 | 140 | error[E0570]: `"thiscall"` is not a supported ABI for the current target
|
38 |
| - --> $DIR/unsupported.rs:50:1 |
| 141 | + --> $DIR/unsupported.rs:116:1 |
39 | 142 | |
|
40 | 143 | LL | extern "thiscall" fn thiscall() {}
|
41 | 144 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
42 | 145 |
|
43 | 146 | warning: use of calling convention not supported on this target
|
44 |
| - --> $DIR/unsupported.rs:56:1 |
| 147 | + --> $DIR/unsupported.rs:137:1 |
45 | 148 | |
|
46 | 149 | LL | extern "stdcall" fn stdcall() {}
|
47 | 150 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
48 | 151 | |
|
49 | 152 | = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
50 | 153 | = note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678>
|
51 |
| - = note: `#[warn(unsupported_calling_conventions)]` on by default |
52 | 154 |
|
53 |
| -error: aborting due to 7 previous errors; 1 warning emitted |
| 155 | +error: aborting due to 21 previous errors; 3 warnings emitted |
54 | 156 |
|
55 | 157 | For more information about this error, try `rustc --explain E0570`.
|
0 commit comments