blob: 8478c4819416c2eb2e8b4fafb46a99cecb154d78 [file] [log] [blame] [edit]
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`.