mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Revert "compiler: Don't consider powerpc to have red zone support yet."
This reverts commit 4fad60fd3a.
Closes #23056.
This commit is contained in:
parent
9e4199d629
commit
15a05fc324
1 changed files with 5 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue