authorgravatar for me@jamesrm.comJames Mintram <me@jamesrm.com> 2022-03-30 23:18:22+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-03-30 19:35:20-04:00
log5d5b1b68fc1b3e1f5a8c7871c9f31716c89eb062
tree4b0309d61d1257b22c0ad3fd3b40141f00249c4c
parent3c64c519e65861868e05c47de2d8605a579edf06

Remove a std.debug.print from the dwarf.zig file

This was causing freestanding builds to fail due to the use of `std.debug.print`

1 files changed, 0 insertions(+), 1 deletions(-)

lib/std/dwarf.zig-1
......@@ -514,7 +514,6 @@ fn parseFormValue(allocator: mem.Allocator, in_stream: anytype, form_id: u64, en
514514 FORM.implicit_const => FormValue{ .Const = Constant{ .signed = true, .payload = undefined } },
515515
516516 else => {
517 std.debug.print("dwarf: unhandled form_id: 0x{x}\n", .{form_id});
518517 return error.InvalidDebugInfo;
519518 },
520519 };