diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig index 23e39caa98..6c78fcfe37 100644 --- a/src/codegen/llvm.zig +++ b/src/codegen/llvm.zig @@ -12083,14 +12083,16 @@ pub fn initializeLLVMTarget(arch: std.Target.Cpu.Arch) void { llvm.LLVMInitializeLoongArchAsmParser(); }, - // LLVM backends that have no initialization functions. + // We don't currently support using these backends. .spirv, .spirv32, .spirv64, - .kalimba, .dxil, => {}, - .spu_2 => unreachable, // LLVM does not support this backend + // LLVM does does not have a backend for these. + .kalimba, + .spu_2, + => unreachable, } }