From 5d5b1b68fc1b3e1f5a8c7871c9f31716c89eb062 Mon Sep 17 00:00:00 2001 From: James Mintram Date: Wed, 30 Mar 2022 23:18:22 +0100 Subject: [PATCH] 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` --- lib/std/dwarf.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/dwarf.zig b/lib/std/dwarf.zig index a13dba2516..506f9eeef8 100644 --- a/lib/std/dwarf.zig +++ b/lib/std/dwarf.zig @@ -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; }, };