diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig index e746da7d5f65..e0dd85cbf673 100644 --- a/src/codegen/llvm.zig +++ b/src/codegen/llvm.zig @@ -9714,7 +9714,7 @@ pub const FuncGen = struct { return self.builder.buildTrunc(result, llvm_trunc_ty, ""); } - // TODO Should this belong in compiler-rt? + // TODO Move this to compiler-rt (see #14609) // // Implements @depositBits(source, mask) in software // (i.e. without platform-specific instructions) @@ -9861,7 +9861,7 @@ pub const FuncGen = struct { return self.builder.buildTrunc(result, llvm_trunc_ty, ""); } - // TODO Should this belong in compiler-rt? + // TODO Move this to compiler-rt (see #14609) // // Implements @extractBits(source, mask) in software // (i.e. without platform-specific instructions)