aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-08-01 01:32:32 -0700
committerGitHub <noreply@github.com>2024-08-01 01:32:32 -0700
commit8f7cbaa4c0cebc22613a33d212569cf221d6a3df (patch)
tree69f542e4fbe140e088924af02c731402f947c4d8 /test
parentf17f73b4fa5640b7f070b80ada5e52e28e93608d (diff)
parent62a01851d9c433ea3f2e98cc986e75d32aece443 (diff)
downloadzig-8f7cbaa4c0cebc22613a33d212569cf221d6a3df.tar.gz
zig-8f7cbaa4c0cebc22613a33d212569cf221d6a3df.zip
Merge pull request #20870 from alexrp/target-cleanup-3
`std.Target`: Remove more dead OS/architecture tags
Diffstat (limited to 'test')
-rw-r--r--test/behavior/align.zig1
-rw-r--r--test/llvm_targets.zig2
2 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/align.zig b/test/behavior/align.zig
index 564e08bac1..2c3fd66412 100644
--- a/test/behavior/align.zig
+++ b/test/behavior/align.zig
@@ -95,7 +95,6 @@ test "alignment and size of structs with 128-bit fields" {
.amdgcn,
.riscv32,
.sparc,
- .sparcel,
.s390x,
.lanai,
.wasm32,
diff --git a/test/llvm_targets.zig b/test/llvm_targets.zig
index 853ca15879..71dc9e30a3 100644
--- a/test/llvm_targets.zig
+++ b/test/llvm_targets.zig
@@ -87,8 +87,6 @@ const targets = [_]std.Target.Query{
.{ .cpu_arch = .sparc, .os_tag = .freestanding, .abi = .none },
.{ .cpu_arch = .sparc, .os_tag = .linux, .abi = .gnu },
.{ .cpu_arch = .sparc, .os_tag = .linux, .abi = .none },
- .{ .cpu_arch = .sparcel, .os_tag = .freestanding, .abi = .none },
- .{ .cpu_arch = .sparcel, .os_tag = .linux, .abi = .gnu },
.{ .cpu_arch = .sparc64, .os_tag = .freestanding, .abi = .none },
.{ .cpu_arch = .sparc64, .os_tag = .linux, .abi = .gnu },
//.{ .cpu_arch = .spirv32, .os_tag = .opencl, .abi = .none },