fn sectionString(sec: Object.Section) []const u8
fn sectionString(sec: Object.Section) []const u8 { return switch (sec) { .undefined => unreachable, .data => "data", .read_only_data => "rodata", .func => "text", .strings => "rodata.str", .custom => |name| name, }; }