| author | |
| committer | |
| log | affe52b590621a69fe706daa22c753ba21752619 |
| tree | c40c3503e3be49317a695872ebb7aa348cc6f3b7 |
| parent | dfecd819ceca861118d80c884614d3bf82eecd3e |
LLVM 15 started generating calls to the standard name now.1 files changed, 7 insertions(+), 1 deletions(-)
lib/compiler_rt/common.zig+7-1| ... | ... | @@ -40,7 +40,13 @@ pub const want_windows_v2u64_abi = builtin.os.tag == .windows and builtin.cpu.ar |
| 40 | 40 | /// x86_64-windows-msvc => true |
| 41 | 41 | /// any-macos-any => false |
| 42 | 42 | pub const gnu_f16_abi = switch (builtin.cpu.arch) { |
| 43 | .wasm32, .wasm64, .riscv64, .riscv32 => false, | |
| 43 | .wasm32, | |
| 44 | .wasm64, | |
| 45 | .riscv64, | |
| 46 | .riscv32, | |
| 47 | .i386, | |
| 48 | .x86_64, | |
| 49 | => false, | |
| 44 | 50 | |
| 45 | 51 | .arm, .armeb, .thumb, .thumbeb => switch (builtin.abi) { |
| 46 | 52 | .eabi, .eabihf => false, |