| author | |
| committer | |
| log | 9c4d5e64b45001cd82c0db53d1a489f433024223 |
| tree | e5514cff9198fdab6d253fe42ee1bd82dc49e18a |
| parent | 9afb349abaeaf6470329ea8990eb06eb37dd79e1 |
3 files changed, 4 insertions(+), 4 deletions(-)
src/codegen/llvm.zig+1-1| ... | ... | @@ -8,7 +8,7 @@ const native_endian = builtin.cpu.arch.endian(); |
| 8 | 8 | const DW = std.dwarf; |
| 9 | 9 | |
| 10 | 10 | const Builder = @import("llvm/Builder.zig"); |
| 11 | const llvm = if (build_options.have_llvm) | |
| 11 | const llvm = if (build_options.have_llvm or true) | |
| 12 | 12 | @import("llvm/bindings.zig") |
| 13 | 13 | else |
| 14 | 14 | @compileError("LLVM unavailable"); |
src/codegen/llvm/Builder.zig+1-1| ... | ... | @@ -6644,7 +6644,7 @@ fn bigIntConstAssumeCapacity( |
| 6644 | 6644 | } else |_| { |
| 6645 | 6645 | const llvm_limbs = try allocator.alloc(u64, std.math.divCeil( |
| 6646 | 6646 | usize, |
| 6647 | canonical_value.bitCountTwosComp(), | |
| 6647 | if (canonical_value.positive) canonical_value.bitCountAbs() else bits, | |
| 6648 | 6648 | @bitSizeOf(u64), |
| 6649 | 6649 | ) catch unreachable); |
| 6650 | 6650 | defer allocator.free(llvm_limbs); |
src/main.zig+2-2| ... | ... | @@ -439,8 +439,8 @@ const usage_build_generic = |
| 439 | 439 | \\ -fno-unwind-tables Never produce unwind table entries |
| 440 | 440 | \\ -fLLVM Force using LLVM as the codegen backend |
| 441 | 441 | \\ -fno-LLVM Prevent using LLVM as the codegen backend |
| 442 | \\ -flibLLVM Force using LLVM shared library apias the codegen backend | |
| 443 | \\ -fno-libLLVM Prevent using LLVM as the codegen backend | |
| 442 | \\ -flibLLVM Force using the LLVM API in the codegen backend | |
| 443 | \\ -fno-libLLVM Prevent using the LLVM API in the codegen backend | |
| 444 | 444 | \\ -fClang Force using Clang as the C/C++ compilation backend |
| 445 | 445 | \\ -fno-Clang Prevent using Clang as the C/C++ compilation backend |
| 446 | 446 | \\ -freference-trace[=num] How many lines of reference trace should be shown per compile error |