Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/ui/abi/abi-sysv64-arg-passing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
//@ ignore-arm
//@ ignore-aarch64
//@ ignore-windows
//@ ignore-backends: gcc

// Windows is ignored because bootstrap doesn't yet know to compile rust_test_helpers with
// the sysv64 ABI on Windows.
Expand Down
1 change: 1 addition & 0 deletions tests/ui/abi/abi-sysv64-register-usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//@ ignore-arm
//@ ignore-aarch64
//@ needs-asm-support
//@ ignore-backends: gcc

#[cfg(target_arch = "x86_64")]
pub extern "sysv64" fn all_the_registers(
Expand Down
2 changes: 2 additions & 0 deletions tests/ui/abi/issue-28676.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//@ run-pass
//@ ignore-backends: gcc

#![allow(dead_code)]
#![allow(improper_ctypes)]

Expand Down
1 change: 1 addition & 0 deletions tests/ui/abi/large-byval-align.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//@ compile-flags: -Copt-level=0
//@ only-x86_64
//@ build-pass
//@ ignore-backends: gcc

#[repr(align(536870912))]
pub struct A(i64);
Expand Down
1 change: 1 addition & 0 deletions tests/ui/abi/numbers-arithmetic/float-struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//@ run-pass
//@ ignore-backends: gcc

use std::fmt::Debug;
use std::hint::black_box;
Expand Down
1 change: 1 addition & 0 deletions tests/ui/abi/stack-probes-lto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
//@ ignore-tvos Stack probes are enabled, but the SIGSEGV handler isn't
//@ ignore-watchos Stack probes are enabled, but the SIGSEGV handler isn't
//@ ignore-visionos Stack probes are enabled, but the SIGSEGV handler isn't
//@ ignore-backends: gcc

include!("stack-probes.rs");
1 change: 1 addition & 0 deletions tests/ui/abi/stack-probes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//@ ignore-tvos Stack probes are enabled, but the SIGSEGV handler isn't
//@ ignore-watchos Stack probes are enabled, but the SIGSEGV handler isn't
//@ ignore-visionos Stack probes are enabled, but the SIGSEGV handler isn't
//@ ignore-backends: gcc

use std::env;
use std::mem::MaybeUninit;
Expand Down
1 change: 1 addition & 0 deletions tests/ui/abi/stack-protector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
//@ [ssp] compile-flags: -Z stack-protector=all
//@ compile-flags: -C opt-level=2
//@ compile-flags: -g
//@ ignore-backends: gcc

use std::env;
use std::process::{Command, ExitStatus};
Expand Down
2 changes: 2 additions & 0 deletions tests/ui/abi/struct-enums/struct-return.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//@ run-pass
//@ ignore-backends: gcc

#![allow(dead_code)]

#[repr(C)]
Expand Down
2 changes: 2 additions & 0 deletions tests/ui/abi/variadic-ffi.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//@ run-pass
//@ ignore-backends: gcc

#![feature(c_variadic)]

use std::ffi::VaList;
Expand Down
1 change: 1 addition & 0 deletions tests/ui/abi/x86stdcall.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//@ run-pass
//@ only-windows
//@ ignore-backends: gcc
// GetLastError doesn't seem to work with stack switching

#[cfg(windows)]
Expand Down
Loading