mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.builtin: Define VaList for arm, armeb, and thumbeb too.
This commit is contained in:
parent
34c6482403
commit
832f74876e
1 changed files with 1 additions and 1 deletions
|
|
@ -603,7 +603,7 @@ pub const VaList = switch (builtin.cpu.arch) {
|
|||
.ios, .macos, .tvos, .watchos, .visionos => *u8,
|
||||
else => @compileError("disabled due to miscompilations"), // VaListAarch64,
|
||||
},
|
||||
.arm => switch (builtin.os.tag) {
|
||||
.arm, .armeb, .thumb, .thumbeb => switch (builtin.os.tag) {
|
||||
.ios, .macos, .tvos, .watchos, .visionos => *u8,
|
||||
else => *anyopaque,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue