| ... | @@ -2500,7 +2500,7 @@ pub const DeclGen = struct { | ... | @@ -2500,7 +2500,7 @@ pub const DeclGen = struct { |
| 2500 | | 2500 | |
| 2501 | fn lowerType(dg: *DeclGen, t: Type) Allocator.Error!*const llvm.Type { | 2501 | fn lowerType(dg: *DeclGen, t: Type) Allocator.Error!*const llvm.Type { |
| 2502 | const llvm_ty = try lowerTypeInner(dg, t); | 2502 | const llvm_ty = try lowerTypeInner(dg, t); |
| 2503 | if (std.debug.runtime_safety) check: { | 2503 | if (std.debug.runtime_safety and false) check: { |
| 2504 | if (t.zigTypeTag() == .Opaque) break :check; | 2504 | if (t.zigTypeTag() == .Opaque) break :check; |
| 2505 | if (!t.hasRuntimeBits()) break :check; | 2505 | if (!t.hasRuntimeBits()) break :check; |
| 2506 | if (!llvm_ty.isSized().toBool()) break :check; | 2506 | if (!llvm_ty.isSized().toBool()) break :check; |