We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 514d24e commit df2ee63Copy full SHA for df2ee63
lldb/source/Plugins/Language/Swift/SwiftLanguage.cpp
@@ -1735,18 +1735,15 @@ bool SwiftLanguage::GetFunctionDisplayName(
1735
sc.function->GetBlock(true).GetBlockVariableList(true);
1736
}
1737
1738
- if (inline_info) {
1739
- s << display_name;
1740
- s.PutCString(" [inlined] ");
1741
- display_name = inline_info->GetName().GetString();
1742
- }
1743
-
1744
VariableList args;
1745
if (variable_list_sp)
1746
variable_list_sp->AppendVariablesWithScope(eValueTypeVariableArgument,
1747
args);
1748
1749
s << display_name;
+ if (inline_info) {
+ s.PutCString(" [inlined] ");
+ }
1750
s << GetFunctionDisplayArgs(sc, args, exe_ctx);
1751
return true;
1752
0 commit comments