Skip to content

Commit

Permalink
std.builtin: Define VaList for arm, armeb, and thumbeb too.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Aug 28, 2024
1 parent 34c6482 commit 832f748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/std/builtin.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit 832f748

Please sign in to comment.