summaryrefslogtreecommitdiffstats
path: root/src/test/ui/abi/unsupported.i686.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/abi/unsupported.i686.stderr')
-rw-r--r--src/test/ui/abi/unsupported.i686.stderr39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/test/ui/abi/unsupported.i686.stderr b/src/test/ui/abi/unsupported.i686.stderr
deleted file mode 100644
index 7ca93516d..000000000
--- a/src/test/ui/abi/unsupported.i686.stderr
+++ /dev/null
@@ -1,39 +0,0 @@
-error[E0570]: `"ptx-kernel"` is not a supported ABI for the current target
- --> $DIR/unsupported.rs:26:1
- |
-LL | extern "ptx-kernel" fn ptx() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
- --> $DIR/unsupported.rs:28:1
- |
-LL | extern "amdgpu-kernel" fn amdgpu() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error[E0570]: `"wasm"` is not a supported ABI for the current target
- --> $DIR/unsupported.rs:30:1
- |
-LL | extern "wasm" fn wasm() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^
-
-error[E0570]: `"aapcs"` is not a supported ABI for the current target
- --> $DIR/unsupported.rs:32:1
- |
-LL | extern "aapcs" fn aapcs() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error[E0570]: `"msp430-interrupt"` is not a supported ABI for the current target
- --> $DIR/unsupported.rs:36:1
- |
-LL | extern "msp430-interrupt" fn msp430() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error[E0570]: `"avr-interrupt"` is not a supported ABI for the current target
- --> $DIR/unsupported.rs:38:1
- |
-LL | extern "avr-interrupt" fn avr() {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: aborting due to 6 previous errors
-
-For more information about this error, try `rustc --explain E0570`.