blob: 8478c4819416c2eb2e8b4fafb46a99cecb154d78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
error[E0570]: "ptx-kernel" is not a supported ABI for the current target
--> $DIR/unsupported.rs:36:8
|
LL | extern "ptx-kernel" fn ptx() {}
| ^^^^^^^^^^^^
error[E0570]: "ptx-kernel" is not a supported ABI for the current target
--> $DIR/unsupported.rs:38:22
|
LL | fn ptx_ptr(f: extern "ptx-kernel" fn()) {
| ^^^^^^^^^^^^
error[E0570]: "ptx-kernel" is not a supported ABI for the current target
--> $DIR/unsupported.rs:42:8
|
LL | extern "ptx-kernel" {}
| ^^^^^^^^^^^^
error[E0570]: "gpu-kernel" is not a supported ABI for the current target
--> $DIR/unsupported.rs:44:8
|
LL | extern "gpu-kernel" fn gpu() {}
| ^^^^^^^^^^^^
error[E0570]: "aapcs" is not a supported ABI for the current target
--> $DIR/unsupported.rs:47:8
|
LL | extern "aapcs" fn aapcs() {}
| ^^^^^^^
error[E0570]: "aapcs" is not a supported ABI for the current target
--> $DIR/unsupported.rs:49:24
|
LL | fn aapcs_ptr(f: extern "aapcs" fn()) {
| ^^^^^^^
error[E0570]: "aapcs" is not a supported ABI for the current target
--> $DIR/unsupported.rs:53:8
|
LL | extern "aapcs" {}
| ^^^^^^^
error[E0570]: "msp430-interrupt" is not a supported ABI for the current target
--> $DIR/unsupported.rs:56:8
|
LL | extern "msp430-interrupt" {}
| ^^^^^^^^^^^^^^^^^^
error[E0570]: "avr-interrupt" is not a supported ABI for the current target
--> $DIR/unsupported.rs:59:8
|
LL | extern "avr-interrupt" {}
| ^^^^^^^^^^^^^^^
error[E0570]: "riscv-interrupt-m" is not a supported ABI for the current target
--> $DIR/unsupported.rs:62:8
|
LL | extern "riscv-interrupt-m" {}
| ^^^^^^^^^^^^^^^^^^^
error[E0570]: "cmse-nonsecure-call" is not a supported ABI for the current target
--> $DIR/unsupported.rs:120:28
|
LL | fn cmse_call_ptr(f: extern "cmse-nonsecure-call" fn()) {
| ^^^^^^^^^^^^^^^^^^^^^
error[E0570]: "cmse-nonsecure-entry" is not a supported ABI for the current target
--> $DIR/unsupported.rs:125:8
|
LL | extern "cmse-nonsecure-entry" fn cmse_entry() {}
| ^^^^^^^^^^^^^^^^^^^^^^
error[E0570]: "cmse-nonsecure-entry" is not a supported ABI for the current target
--> $DIR/unsupported.rs:127:29
|
LL | fn cmse_entry_ptr(f: extern "cmse-nonsecure-entry" fn()) {
| ^^^^^^^^^^^^^^^^^^^^^^
error[E0570]: "cmse-nonsecure-entry" is not a supported ABI for the current target
--> $DIR/unsupported.rs:131:8
|
LL | extern "cmse-nonsecure-entry" {}
| ^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 14 previous errors
For more information about this error, try `rustc --explain E0570`.
|