diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2024-12-17 05:37:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-17 05:37:15 -0500 |
| commit | 3e93f2b5d9f31aa473d15c73eb287cd24fc87f14 (patch) | |
| tree | 9cef7cdda0a21f466238a286e000823355425b45 | |
| parent | 40ce4e0ccfd9d29d992591e3285829c6ee9f1612 (diff) | |
| parent | 2b7c0a857371f4295e4868478055bb6cdb4c7f98 (diff) | |
| download | rust-3e93f2b5d9f31aa473d15c73eb287cd24fc87f14.tar.gz rust-3e93f2b5d9f31aa473d15c73eb287cd24fc87f14.zip | |
Rollup merge of #134398 - mustartt:aix-alignment-test-fix, r=compiler-errors
AIX: add alignment info for test Supply alignment and size info for test cases for AIX.
| -rw-r--r-- | tests/ui/intrinsics/intrinsic-alignment.rs | 1 | ||||
| -rw-r--r-- | tests/ui/structs-enums/rec-align-u64.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/ui/intrinsics/intrinsic-alignment.rs b/tests/ui/intrinsics/intrinsic-alignment.rs index ab99aa5fd03..c42a4b94e29 100644 --- a/tests/ui/intrinsics/intrinsic-alignment.rs +++ b/tests/ui/intrinsics/intrinsic-alignment.rs @@ -5,6 +5,7 @@ use std::intrinsics as rusti; #[cfg(any( + target_os = "aix", target_os = "android", target_os = "dragonfly", target_os = "freebsd", diff --git a/tests/ui/structs-enums/rec-align-u64.rs b/tests/ui/structs-enums/rec-align-u64.rs index 8b501ea5509..0f7bb6b3505 100644 --- a/tests/ui/structs-enums/rec-align-u64.rs +++ b/tests/ui/structs-enums/rec-align-u64.rs @@ -24,6 +24,7 @@ struct Outer { } #[cfg(any( + target_os = "aix", target_os = "android", target_os = "dragonfly", target_os = "freebsd", |
