1
- warning: use of calling convention not supported on this target on function pointer
1
+ warning: the calling convention "ptx-kernel" is not supported on this target
2
2
--> $DIR/unsupported.rs:35:15
3
3
|
4
4
LL | fn ptx_ptr(f: extern "ptx-kernel" fn()) {
@@ -14,7 +14,7 @@ error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target
14
14
LL | extern "ptx-kernel" {}
15
15
| ^^^^^^^^^^^^^^^^^^^^^^
16
16
17
- warning: use of calling convention not supported on this target on function pointer
17
+ warning: the calling convention "aapcs" is not supported on this target
18
18
--> $DIR/unsupported.rs:49:17
19
19
|
20
20
LL | fn aapcs_ptr(f: extern "aapcs" fn()) {
@@ -29,7 +29,7 @@ error[E0570]: `"aapcs"` is not a supported ABI for the current target
29
29
LL | extern "aapcs" {}
30
30
| ^^^^^^^^^^^^^^^^^
31
31
32
- warning: use of calling convention not supported on this target on function pointer
32
+ warning: the calling convention "msp430-interrupt" is not supported on this target
33
33
--> $DIR/unsupported.rs:71:18
34
34
|
35
35
LL | fn msp430_ptr(f: extern "msp430-interrupt" fn()) {
@@ -44,7 +44,7 @@ error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
44
44
LL | extern "msp430-interrupt" {}
45
45
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
46
46
47
- warning: use of calling convention not supported on this target on function pointer
47
+ warning: the calling convention "avr-interrupt" is not supported on this target
48
48
--> $DIR/unsupported.rs:81:15
49
49
|
50
50
LL | fn avr_ptr(f: extern "avr-interrupt" fn()) {
@@ -59,7 +59,7 @@ error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
59
59
LL | extern "avr-interrupt" {}
60
60
| ^^^^^^^^^^^^^^^^^^^^^^^^^
61
61
62
- warning: use of calling convention not supported on this target on function pointer
62
+ warning: the calling convention "riscv-interrupt-m" is not supported on this target
63
63
--> $DIR/unsupported.rs:94:17
64
64
|
65
65
LL | fn riscv_ptr(f: extern "riscv-interrupt-m" fn()) {
@@ -74,7 +74,7 @@ error[E0570]: `"riscv-interrupt-m"` is not a supported ABI for the current targe
74
74
LL | extern "riscv-interrupt-m" {}
75
75
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
76
76
77
- warning: use of calling convention not supported on this target on function pointer
77
+ warning: the calling convention "x86-interrupt" is not supported on this target
78
78
--> $DIR/unsupported.rs:116:15
79
79
|
80
80
LL | fn x86_ptr(f: extern "x86-interrupt" fn()) {
@@ -89,7 +89,7 @@ error[E0570]: `"x86-interrupt"` is not a supported ABI for the current target
89
89
LL | extern "x86-interrupt" {}
90
90
| ^^^^^^^^^^^^^^^^^^^^^^^^^
91
91
92
- warning: use of calling convention not supported on this target on function pointer
92
+ warning: the calling convention "thiscall" is not supported on this target
93
93
--> $DIR/unsupported.rs:139:20
94
94
|
95
95
LL | fn thiscall_ptr(f: extern "thiscall" fn()) {
@@ -104,7 +104,7 @@ error[E0570]: `"thiscall"` is not a supported ABI for the current target
104
104
LL | extern "thiscall" {}
105
105
| ^^^^^^^^^^^^^^^^^^^^
106
106
107
- warning: use of calling convention not supported on this target on function pointer
107
+ warning: the calling convention "stdcall" is not supported on this target
108
108
--> $DIR/unsupported.rs:170:19
109
109
|
110
110
LL | fn stdcall_ptr(f: extern "stdcall" fn()) {
@@ -123,7 +123,7 @@ LL | extern "stdcall" {}
123
123
= note: for more information, see issue #87678 <https://github.com/rust-lang/rust/issues/87678>
124
124
= note: `#[warn(unsupported_calling_conventions)]` on by default
125
125
126
- warning: use of calling convention not supported on this target on function pointer
126
+ warning: the calling convention "C-cmse-nonsecure-call" is not supported on this target
127
127
--> $DIR/unsupported.rs:195:21
128
128
|
129
129
LL | fn cmse_call_ptr(f: extern "C-cmse-nonsecure-call" fn()) {
@@ -132,7 +132,7 @@ LL | fn cmse_call_ptr(f: extern "C-cmse-nonsecure-call" fn()) {
132
132
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
133
133
= note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
134
134
135
- warning: use of calling convention not supported on this target on function pointer
135
+ warning: the calling convention "C-cmse-nonsecure-entry" is not supported on this target
136
136
--> $DIR/unsupported.rs:203:22
137
137
|
138
138
LL | fn cmse_entry_ptr(f: extern "C-cmse-nonsecure-entry" fn()) {
0 commit comments