We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a37cd0b commit 9a29350Copy full SHA for 9a29350
src/codegen/llvm.zig
@@ -2426,7 +2426,7 @@ pub const DeclGen = struct {
2426
2427
fn lowerType(dg: *DeclGen, t: Type) Allocator.Error!*const llvm.Type {
2428
const llvm_ty = try lowerTypeInner(dg, t);
2429
- if (std.debug.runtime_safety) check: {
+ if (std.debug.runtime_safety and false) check: {
2430
if (t.zigTypeTag() == .Opaque) break :check;
2431
if (!t.hasRuntimeBits()) break :check;
2432
if (!llvm_ty.isSized().toBool()) break :check;
0 commit comments