| ... | ... | @@ -180,6 +180,12 @@ pub fn markDirty(self: *DebugSymbols, sect_index: u8) void { |
| 180 | 180 | self.debug_info_header_dirty = true; |
| 181 | 181 | } else if (self.debug_line_section_index.? == sect_index) { |
| 182 | 182 | self.debug_line_header_dirty = true; |
| 183 | } else if (self.debug_abbrev_section_index.? == sect_index) { |
| 184 | self.debug_abbrev_section_dirty = true; |
| 185 | } else if (self.debug_str_section_index.? == sect_index) { |
| 186 | self.debug_string_table_dirty = true; |
| 187 | } else if (self.debug_aranges_section_index.? == sect_index) { |
| 188 | self.debug_aranges_section_dirty = true; |
| 183 | 189 | } |
| 184 | 190 | } |
| 185 | 191 | |