Commit 5d5b1b68fc

James Mintram <me@jamesrm.com>
2022-03-31 00:18:22
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 parent 3c64c51
Changed files (1)
lib
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;
         },
     };