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`
This commit is contained in:
James Mintram
2022-03-30 23:18:22 +01:00
committed by Andrew Kelley
parent 3c64c519e6
commit 5d5b1b68fc

View File

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