@@ -15,7 +15,7 @@ LL | extern "ptx-kernel" {}
15
15
| ^^^^^^^^^^^^^^^^^^^^^^
16
16
17
17
warning: the calling convention "aapcs" is not supported on this target
18
- --> $DIR/unsupported.rs:55 :17
18
+ --> $DIR/unsupported.rs:50 :17
19
19
|
20
20
LL | fn aapcs_ptr(f: extern "aapcs" fn()) {
21
21
| ^^^^^^^^^^^^^^^^^^^
@@ -24,13 +24,13 @@ LL | fn aapcs_ptr(f: extern "aapcs" fn()) {
24
24
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
25
25
26
26
error[E0570]: `"aapcs"` is not a supported ABI for the current target
27
- --> $DIR/unsupported.rs:70 :1
27
+ --> $DIR/unsupported.rs:55 :1
28
28
|
29
29
LL | extern "aapcs" {}
30
30
| ^^^^^^^^^^^^^^^^^
31
31
32
32
warning: the calling convention "msp430-interrupt" is not supported on this target
33
- --> $DIR/unsupported.rs:80 :18
33
+ --> $DIR/unsupported.rs:60 :18
34
34
|
35
35
LL | fn msp430_ptr(f: extern "msp430-interrupt" fn()) {
36
36
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -39,13 +39,13 @@ LL | fn msp430_ptr(f: extern "msp430-interrupt" fn()) {
39
39
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
40
40
41
41
error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
42
- --> $DIR/unsupported.rs:85 :1
42
+ --> $DIR/unsupported.rs:65 :1
43
43
|
44
44
LL | extern "msp430-interrupt" {}
45
45
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
46
46
47
47
warning: the calling convention "avr-interrupt" is not supported on this target
48
- --> $DIR/unsupported.rs:90 :15
48
+ --> $DIR/unsupported.rs:70 :15
49
49
|
50
50
LL | fn avr_ptr(f: extern "avr-interrupt" fn()) {
51
51
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -54,13 +54,13 @@ LL | fn avr_ptr(f: extern "avr-interrupt" fn()) {
54
54
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
55
55
56
56
error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
57
- --> $DIR/unsupported.rs:95 :1
57
+ --> $DIR/unsupported.rs:75 :1
58
58
|
59
59
LL | extern "avr-interrupt" {}
60
60
| ^^^^^^^^^^^^^^^^^^^^^^^^^
61
61
62
62
warning: the calling convention "riscv-interrupt-m" is not supported on this target
63
- --> $DIR/unsupported.rs:104 :17
63
+ --> $DIR/unsupported.rs:80 :17
64
64
|
65
65
LL | fn riscv_ptr(f: extern "riscv-interrupt-m" fn()) {
66
66
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -69,13 +69,13 @@ LL | fn riscv_ptr(f: extern "riscv-interrupt-m" fn()) {
69
69
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
70
70
71
71
error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current target
72
- --> $DIR/unsupported.rs:117 :1
72
+ --> $DIR/unsupported.rs:85 :1
73
73
|
74
74
LL | extern "riscv-interrupt-m" {}
75
75
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
76
76
77
77
warning: the calling convention "x86-interrupt" is not supported on this target
78
- --> $DIR/unsupported.rs:129 :15
78
+ --> $DIR/unsupported.rs:90 :15
79
79
|
80
80
LL | fn x86_ptr(f: extern "x86-interrupt" fn()) {
81
81
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -84,13 +84,13 @@ LL | fn x86_ptr(f: extern "x86-interrupt" fn()) {
84
84
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
85
85
86
86
error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target
87
- --> $DIR/unsupported.rs:140 :1
87
+ --> $DIR/unsupported.rs:95 :1
88
88
|
89
89
LL | extern "x86-interrupt" {}
90
90
| ^^^^^^^^^^^^^^^^^^^^^^^^^
91
91
92
92
warning: the calling convention "thiscall" is not supported on this target
93
- --> $DIR/unsupported.rs:153 :20
93
+ --> $DIR/unsupported.rs:100 :20
94
94
|
95
95
LL | fn thiscall_ptr(f: extern "thiscall" fn()) {
96
96
| ^^^^^^^^^^^^^^^^^^^^^^
@@ -99,13 +99,13 @@ LL | fn thiscall_ptr(f: extern "thiscall" fn()) {
99
99
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
100
100
101
101
error[E0570]: `"thiscall"` is not a supported ABI for the current target
102
- --> $DIR/unsupported.rs:168 :1
102
+ --> $DIR/unsupported.rs:105 :1
103
103
|
104
104
LL | extern "thiscall" {}
105
105
| ^^^^^^^^^^^^^^^^^^^^
106
106
107
107
warning: the calling convention "stdcall" is not supported on this target
108
- --> $DIR/unsupported.rs:184 :19
108
+ --> $DIR/unsupported.rs:112 :19
109
109
|
110
110
LL | fn stdcall_ptr(f: extern "stdcall" fn()) {
111
111
| ^^^^^^^^^^^^^^^^^^^^^
@@ -114,13 +114,13 @@ LL | fn stdcall_ptr(f: extern "stdcall" fn()) {
114
114
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
115
115
116
116
error[E0570]: `"stdcall"` is not a supported ABI for the current target
117
- --> $DIR/unsupported.rs:199 :1
117
+ --> $DIR/unsupported.rs:117 :1
118
118
|
119
119
LL | extern "stdcall" {}
120
120
| ^^^^^^^^^^^^^^^^^^^
121
121
122
122
warning: the calling convention "cdecl" is not supported on this target
123
- --> $DIR/unsupported.rs:221 :17
123
+ --> $DIR/unsupported.rs:125 :17
124
124
|
125
125
LL | fn cdecl_ptr(f: extern "cdecl" fn()) {
126
126
| ^^^^^^^^^^^^^^^^^^^
@@ -129,7 +129,7 @@ LL | fn cdecl_ptr(f: extern "cdecl" fn()) {
129
129
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
130
130
131
131
warning: use of calling convention not supported on this target
132
- --> $DIR/unsupported.rs:236 :1
132
+ --> $DIR/unsupported.rs:130 :1
133
133
|
134
134
LL | extern "cdecl" {}
135
135
| ^^^^^^^^^^^^^^^^^
@@ -139,7 +139,7 @@ LL | extern "cdecl" {}
139
139
= note: `#[warn(unsupported_calling_conventions)]` on by default
140
140
141
141
warning: the calling convention "vectorcall" is not supported on this target
142
- --> $DIR/unsupported.rs:255 :22
142
+ --> $DIR/unsupported.rs:136 :22
143
143
|
144
144
LL | fn vectorcall_ptr(f: extern "vectorcall" fn()) {
145
145
| ^^^^^^^^^^^^^^^^^^^^^^^^
@@ -148,13 +148,13 @@ LL | fn vectorcall_ptr(f: extern "vectorcall" fn()) {
148
148
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
149
149
150
150
error[E0570]: `"vectorcall"` is not a supported ABI for the current target
151
- --> $DIR/unsupported.rs:266 :1
151
+ --> $DIR/unsupported.rs:141 :1
152
152
|
153
153
LL | extern "vectorcall" {}
154
154
| ^^^^^^^^^^^^^^^^^^^^^^
155
155
156
156
warning: the calling convention "C-cmse-nonsecure-call" is not supported on this target
157
- --> $DIR/unsupported.rs:272 :21
157
+ --> $DIR/unsupported.rs:144 :21
158
158
|
159
159
LL | fn cmse_call_ptr(f: extern "C-cmse-nonsecure-call" fn()) {
160
160
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -163,7 +163,7 @@ LL | fn cmse_call_ptr(f: extern "C-cmse-nonsecure-call" fn()) {
163
163
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
164
164
165
165
warning: the calling convention "C-cmse-nonsecure-entry" is not supported on this target
166
- --> $DIR/unsupported.rs:280 :22
166
+ --> $DIR/unsupported.rs:152 :22
167
167
|
168
168
LL | fn cmse_entry_ptr(f: extern "C-cmse-nonsecure-entry" fn()) {
169
169
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -172,7 +172,7 @@ LL | fn cmse_entry_ptr(f: extern "C-cmse-nonsecure-entry" fn()) {
172
172
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
173
173
174
174
error[E0570]: `"C-cmse-nonsecure-entry"` is not a supported ABI for the current target
175
- --> $DIR/unsupported.rs:285 :1
175
+ --> $DIR/unsupported.rs:157 :1
176
176
|
177
177
LL | extern "C-cmse-nonsecure-entry" {}
178
178
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -196,43 +196,43 @@ LL | extern "aapcs" fn aapcs() {}
196
196
| ^^^^^^^^^^^^^^^^^^^^^^^^^
197
197
198
198
error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
199
- --> $DIR/unsupported.rs:78 :1
199
+ --> $DIR/unsupported.rs:58 :1
200
200
|
201
201
LL | extern "msp430-interrupt" fn msp430() {}
202
202
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
203
203
204
204
error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
205
- --> $DIR/unsupported.rs:88 :1
205
+ --> $DIR/unsupported.rs:68 :1
206
206
|
207
207
LL | extern "avr-interrupt" fn avr() {}
208
208
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
209
209
210
210
error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current target
211
- --> $DIR/unsupported.rs:98 :1
211
+ --> $DIR/unsupported.rs:78 :1
212
212
|
213
213
LL | extern "riscv-interrupt-m" fn riscv() {}
214
214
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
215
215
216
216
error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target
217
- --> $DIR/unsupported.rs:124 :1
217
+ --> $DIR/unsupported.rs:88 :1
218
218
|
219
219
LL | extern "x86-interrupt" fn x86() {}
220
220
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
221
221
222
222
error[E0570]: `"thiscall"` is not a supported ABI for the current target
223
- --> $DIR/unsupported.rs:146 :1
223
+ --> $DIR/unsupported.rs:98 :1
224
224
|
225
225
LL | extern "thiscall" fn thiscall() {}
226
226
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
227
227
228
228
error[E0570]: `"stdcall"` is not a supported ABI for the current target
229
- --> $DIR/unsupported.rs:176 :1
229
+ --> $DIR/unsupported.rs:108 :1
230
230
|
231
231
LL | extern "stdcall" fn stdcall() {}
232
232
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
233
233
234
234
warning: use of calling convention not supported on this target
235
- --> $DIR/unsupported.rs:208 :1
235
+ --> $DIR/unsupported.rs:122 :1
236
236
|
237
237
LL | extern "cdecl" fn cdecl() {}
238
238
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -241,13 +241,13 @@ LL | extern "cdecl" fn cdecl() {}
241
241
= note: for more information, see issue #137018 <https://github.com/rust-lang/rust/issues/137018>
242
242
243
243
error[E0570]: `"vectorcall"` is not a supported ABI for the current target
244
- --> $DIR/unsupported.rs:250 :1
244
+ --> $DIR/unsupported.rs:134 :1
245
245
|
246
246
LL | extern "vectorcall" fn vectorcall() {}
247
247
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
248
248
249
249
error[E0570]: `"C-cmse-nonsecure-entry"` is not a supported ABI for the current target
250
- --> $DIR/unsupported.rs:278 :1
250
+ --> $DIR/unsupported.rs:150 :1
251
251
|
252
252
LL | extern "C-cmse-nonsecure-entry" fn cmse_entry() {}
253
253
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -268,7 +268,7 @@ LL | fn ptx_ptr(f: extern "ptx-kernel" fn()) {
268
268
269
269
Future breakage diagnostic:
270
270
warning: the calling convention "aapcs" is not supported on this target
271
- --> $DIR/unsupported.rs:55 :17
271
+ --> $DIR/unsupported.rs:50 :17
272
272
|
273
273
LL | fn aapcs_ptr(f: extern "aapcs" fn()) {
274
274
| ^^^^^^^^^^^^^^^^^^^
@@ -279,7 +279,7 @@ LL | fn aapcs_ptr(f: extern "aapcs" fn()) {
279
279
280
280
Future breakage diagnostic:
281
281
warning: the calling convention "msp430-interrupt" is not supported on this target
282
- --> $DIR/unsupported.rs:80 :18
282
+ --> $DIR/unsupported.rs:60 :18
283
283
|
284
284
LL | fn msp430_ptr(f: extern "msp430-interrupt" fn()) {
285
285
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -290,7 +290,7 @@ LL | fn msp430_ptr(f: extern "msp430-interrupt" fn()) {
290
290
291
291
Future breakage diagnostic:
292
292
warning: the calling convention "avr-interrupt" is not supported on this target
293
- --> $DIR/unsupported.rs:90 :15
293
+ --> $DIR/unsupported.rs:70 :15
294
294
|
295
295
LL | fn avr_ptr(f: extern "avr-interrupt" fn()) {
296
296
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -301,7 +301,7 @@ LL | fn avr_ptr(f: extern "avr-interrupt" fn()) {
301
301
302
302
Future breakage diagnostic:
303
303
warning: the calling convention "riscv-interrupt-m" is not supported on this target
304
- --> $DIR/unsupported.rs:104 :17
304
+ --> $DIR/unsupported.rs:80 :17
305
305
|
306
306
LL | fn riscv_ptr(f: extern "riscv-interrupt-m" fn()) {
307
307
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -312,7 +312,7 @@ LL | fn riscv_ptr(f: extern "riscv-interrupt-m" fn()) {
312
312
313
313
Future breakage diagnostic:
314
314
warning: the calling convention "x86-interrupt" is not supported on this target
315
- --> $DIR/unsupported.rs:129 :15
315
+ --> $DIR/unsupported.rs:90 :15
316
316
|
317
317
LL | fn x86_ptr(f: extern "x86-interrupt" fn()) {
318
318
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -323,7 +323,7 @@ LL | fn x86_ptr(f: extern "x86-interrupt" fn()) {
323
323
324
324
Future breakage diagnostic:
325
325
warning: the calling convention "thiscall" is not supported on this target
326
- --> $DIR/unsupported.rs:153 :20
326
+ --> $DIR/unsupported.rs:100 :20
327
327
|
328
328
LL | fn thiscall_ptr(f: extern "thiscall" fn()) {
329
329
| ^^^^^^^^^^^^^^^^^^^^^^
@@ -334,7 +334,7 @@ LL | fn thiscall_ptr(f: extern "thiscall" fn()) {
334
334
335
335
Future breakage diagnostic:
336
336
warning: the calling convention "stdcall" is not supported on this target
337
- --> $DIR/unsupported.rs:184 :19
337
+ --> $DIR/unsupported.rs:112 :19
338
338
|
339
339
LL | fn stdcall_ptr(f: extern "stdcall" fn()) {
340
340
| ^^^^^^^^^^^^^^^^^^^^^
@@ -345,7 +345,7 @@ LL | fn stdcall_ptr(f: extern "stdcall" fn()) {
345
345
346
346
Future breakage diagnostic:
347
347
warning: the calling convention "cdecl" is not supported on this target
348
- --> $DIR/unsupported.rs:221 :17
348
+ --> $DIR/unsupported.rs:125 :17
349
349
|
350
350
LL | fn cdecl_ptr(f: extern "cdecl" fn()) {
351
351
| ^^^^^^^^^^^^^^^^^^^
@@ -356,7 +356,7 @@ LL | fn cdecl_ptr(f: extern "cdecl" fn()) {
356
356
357
357
Future breakage diagnostic:
358
358
warning: use of calling convention not supported on this target
359
- --> $DIR/unsupported.rs:236 :1
359
+ --> $DIR/unsupported.rs:130 :1
360
360
|
361
361
LL | extern "cdecl" {}
362
362
| ^^^^^^^^^^^^^^^^^
@@ -367,7 +367,7 @@ LL | extern "cdecl" {}
367
367
368
368
Future breakage diagnostic:
369
369
warning: the calling convention "vectorcall" is not supported on this target
370
- --> $DIR/unsupported.rs:255 :22
370
+ --> $DIR/unsupported.rs:136 :22
371
371
|
372
372
LL | fn vectorcall_ptr(f: extern "vectorcall" fn()) {
373
373
| ^^^^^^^^^^^^^^^^^^^^^^^^
@@ -378,7 +378,7 @@ LL | fn vectorcall_ptr(f: extern "vectorcall" fn()) {
378
378
379
379
Future breakage diagnostic:
380
380
warning: the calling convention "C-cmse-nonsecure-call" is not supported on this target
381
- --> $DIR/unsupported.rs:272 :21
381
+ --> $DIR/unsupported.rs:144 :21
382
382
|
383
383
LL | fn cmse_call_ptr(f: extern "C-cmse-nonsecure-call" fn()) {
384
384
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -389,7 +389,7 @@ LL | fn cmse_call_ptr(f: extern "C-cmse-nonsecure-call" fn()) {
389
389
390
390
Future breakage diagnostic:
391
391
warning: the calling convention "C-cmse-nonsecure-entry" is not supported on this target
392
- --> $DIR/unsupported.rs:280 :22
392
+ --> $DIR/unsupported.rs:152 :22
393
393
|
394
394
LL | fn cmse_entry_ptr(f: extern "C-cmse-nonsecure-entry" fn()) {
395
395
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -400,7 +400,7 @@ LL | fn cmse_entry_ptr(f: extern "C-cmse-nonsecure-entry" fn()) {
400
400
401
401
Future breakage diagnostic:
402
402
warning: use of calling convention not supported on this target
403
- --> $DIR/unsupported.rs:208 :1
403
+ --> $DIR/unsupported.rs:122 :1
404
404
|
405
405
LL | extern "cdecl" fn cdecl() {}
406
406
| ^^^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments