Commit 3e126102b7

Andrew Kelley <andrew@ziglang.org>
2022-10-31 02:42:59
compiler_rt: fix gnu_f16_abi for i386-windows
closes #13333
1 parent 30b8b29
Changed files (1)
lib
compiler_rt
lib/compiler_rt/common.zig
@@ -45,10 +45,11 @@ pub const gnu_f16_abi = switch (builtin.cpu.arch) {
     .wasm64,
     .riscv64,
     .riscv32,
-    .i386,
     .x86_64,
     => false,
 
+    .i386 => true,
+
     .arm, .armeb, .thumb, .thumbeb => switch (builtin.abi) {
         .eabi, .eabihf => false,
         else => true,