Revert "compiler: Don't consider powerpc to have red zone support yet."

This reverts commit 4fad60fd3a70d0b059ce92ce825faabc1d2ac2e8.

Closes #23056.
This commit is contained in:
Alex Rønne Petersen 2025-03-10 07:36:38 +01:00
parent 9e4199d629
commit 15a05fc324
No known key found for this signature in database

View File

@ -317,8 +317,12 @@ pub fn hasRedZone(target: std.Target) bool {
return switch (target.cpu.arch) { return switch (target.cpu.arch) {
.aarch64, .aarch64,
.aarch64_be, .aarch64_be,
.x86, .powerpc,
.powerpcle,
.powerpc64,
.powerpc64le,
.x86_64, .x86_64,
.x86,
=> true, => true,
else => false, else => false,