aboutsummaryrefslogtreecommitdiff
path: root/src/target.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/target.zig')
-rw-r--r--src/target.zig6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/target.zig b/src/target.zig
index d032b0d16e..76eec4fa6e 100644
--- a/src/target.zig
+++ b/src/target.zig
@@ -306,12 +306,8 @@ pub fn hasRedZone(target: std.Target) bool {
return switch (target.cpu.arch) {
.aarch64,
.aarch64_be,
- .powerpc,
- .powerpcle,
- .powerpc64,
- .powerpc64le,
- .x86_64,
.x86,
+ .x86_64,
=> true,
else => false,