Skip to content

Commit 41246b2

Browse files
committed
Remove fixed todos
1 parent a64387b commit 41246b2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/debuginfo/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ impl DebugContext {
215215
entry.set(gimli::DW_AT_linkage_name, AttributeValue::StringRef(linkage_name_id));
216216
}
217217
// Gdb requires DW_AT_name. Otherwise the DW_TAG_subprogram is skipped.
218-
// FIXME only include the function name and not the full mangled symbol
219218
entry.set(gimli::DW_AT_name, AttributeValue::StringRef(name_id));
220219

221220
entry.set(gimli::DW_AT_decl_file, AttributeValue::FileIndex(Some(file_id)));
@@ -225,8 +224,6 @@ impl DebugContext {
225224
entry.set(gimli::DW_AT_external, AttributeValue::FlagPresent);
226225
}
227226

228-
// FIXME set DW_AT_external as appropriate
229-
230227
FunctionDebugContext {
231228
entry_id,
232229
function_source_loc: (file_id, line, column),

0 commit comments

Comments
 (0)