Commit 832f74876e

Alex Rønne Petersen <alex@alexrp.com>
2024-08-21 16:08:56
std.builtin: Define VaList for arm, armeb, and thumbeb too.
1 parent 34c6482
Changed files (1)
lib
lib/std/builtin.zig
@@ -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,
     },