| ... | @@ -1546,7 +1546,7 @@ pub const DwarfInfo = struct { | ... | @@ -1546,7 +1546,7 @@ pub const DwarfInfo = struct { |
| 1546 | } | 1546 | } |
| 1547 | | 1547 | |
| 1548 | // TODO: Avoiding sorting if has_eh_frame_hdr exists | 1548 | // TODO: Avoiding sorting if has_eh_frame_hdr exists |
| 1549 | std.sort.sort(FrameDescriptionEntry, di.fde_list.items, {}, struct { | 1549 | std.mem.sort(FrameDescriptionEntry, di.fde_list.items, {}, struct { |
| 1550 | fn lessThan(ctx: void, a: FrameDescriptionEntry, b: FrameDescriptionEntry) bool { | 1550 | fn lessThan(ctx: void, a: FrameDescriptionEntry, b: FrameDescriptionEntry) bool { |
| 1551 | _ = ctx; | 1551 | _ = ctx; |
| 1552 | return a.pc_begin < b.pc_begin; | 1552 | return a.pc_begin < b.pc_begin; |