| ... | ... | @@ -1929,7 +1929,7 @@ fn lowerParentPtrDecl(self: *Self, ptr_val: Value, decl: *Module.Decl) InnerErro |
| 1929 | 1929 | |
| 1930 | 1930 | fn lowerDeclRefValue(self: *Self, tv: TypedValue, decl: *Module.Decl) InnerError!WValue { |
| 1931 | 1931 | if (tv.ty.isSlice()) { |
| 1932 | | return WValue{ .memory = try self.bin_file.lowerUnnamedConst(self.decl, tv) }; |
| 1932 | return WValue{ .memory = try self.bin_file.lowerUnnamedConst(decl, tv) }; |
| 1933 | 1933 | } else if (decl.ty.zigTypeTag() != .Fn and !decl.ty.hasRuntimeBitsIgnoreComptime()) { |
| 1934 | 1934 | return WValue{ .imm32 = 0xaaaaaaaa }; |
| 1935 | 1935 | } |