| author | |
| committer | |
| log | 9329b93b8896e552812d68a542b296cb897584d8 |
| tree | c19019f3e4e2112a41eece17a521fc2a1fb4c272 |
| parent | 040cb585e88583cba8a15f30eea07bfd2f135515 |
There are many more instances of this check being tripped that we need
to fix before we can enable this.1 files changed, 1 insertions(+), 1 deletions(-)
src/codegen/llvm.zig+1-1| ... | ... | @@ -2425,7 +2425,7 @@ pub const DeclGen = struct { |
| 2425 | 2425 | |
| 2426 | 2426 | fn lowerType(dg: *DeclGen, t: Type) Allocator.Error!*const llvm.Type { |
| 2427 | 2427 | const llvm_ty = try lowerTypeInner(dg, t); |
| 2428 | if (std.debug.runtime_safety) check: { | |
| 2428 | if (std.debug.runtime_safety and false) check: { | |
| 2429 | 2429 | if (t.zigTypeTag() == .Opaque) break :check; |
| 2430 | 2430 | if (!t.hasRuntimeBits()) break :check; |
| 2431 | 2431 | if (!llvm_ty.isSized().toBool()) break :check; |