We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d694ddd commit c631110Copy full SHA for c631110
lib/std/os/linux/tls.zig
@@ -74,7 +74,7 @@ const tls_variant = switch (native_arch) {
74
const tls_tcb_size = switch (native_arch) {
75
// ARM EABI mandates enough space for two pointers: the first one points to
76
// the DTV while the second one is unspecified but reserved
77
- .arm, .armeb, .thumb, .aarch64, .aarch64_be => 2 * @sizeOf(usize),
+ .arm, .armeb, .thumb, .thumbeb, .aarch64, .aarch64_be => 2 * @sizeOf(usize),
78
// One pointer-sized word that points either to the DTV or the TCB itself
79
else => @sizeOf(usize),
80
};
0 commit comments