We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64387b commit 41246b2Copy full SHA for 41246b2
src/debuginfo/mod.rs
@@ -215,7 +215,6 @@ impl DebugContext {
215
entry.set(gimli::DW_AT_linkage_name, AttributeValue::StringRef(linkage_name_id));
216
}
217
// 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
219
entry.set(gimli::DW_AT_name, AttributeValue::StringRef(name_id));
220
221
entry.set(gimli::DW_AT_decl_file, AttributeValue::FileIndex(Some(file_id)));
@@ -225,8 +224,6 @@ impl DebugContext {
225
224
entry.set(gimli::DW_AT_external, AttributeValue::FlagPresent);
226
227
228
- // FIXME set DW_AT_external as appropriate
229
-
230
FunctionDebugContext {
231
entry_id,
232
function_source_loc: (file_id, line, column),
0 commit comments