Rollup merge of #42531 - mmatyas:aarch64_compile-test_fix, r=nagisa

Ignore variadic FFI test on AArch64

I've cross compiled Rust to `aarch64-linux-gnu`, and tried to run the compile-fail tests, but `variadic-ffi.rs` fails with the following error:

```
The ABI `"stdcall"` is not supported for the current target [E0570]
```

The test seems to be ignored on (32-bit) ARM, so I turned it off for AArch64 too.
This commit is contained in:
Corey Farwell 2017-06-09 18:29:27 -04:00 committed by GitHub
commit 19ba908ac0
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@
// except according to those terms.
// ignore-arm stdcall isn't suppported
// ignore-aarch64 stdcall isn't suppported
extern "stdcall" {
fn printf(_: *const u8, ...); //~ ERROR: variadic function must have C or cdecl calling