diff options
author | Enrico Granata <egranata@apple.com> | 2015-11-19 02:50:27 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-11-19 02:50:27 +0000 |
commit | 293207dd571c7668f3bdbd96e43384b1f13fe144 (patch) | |
tree | 9d51c6ada03825f380036fbecbcf2449768072b9 /lldb/source/Core/FormatEntity.cpp | |
parent | b69babd01efbf19994a849c2f746c84341726e14 (diff) | |
download | bcm5719-llvm-293207dd571c7668f3bdbd96e43384b1f13fe144.tar.gz bcm5719-llvm-293207dd571c7668f3bdbd96e43384b1f13fe144.zip |
Pass the ExecutionContext as well, since it is actually useful
llvm-svn: 253537
Diffstat (limited to 'lldb/source/Core/FormatEntity.cpp')
-rw-r--r-- | lldb/source/Core/FormatEntity.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Core/FormatEntity.cpp b/lldb/source/Core/FormatEntity.cpp index fa6ed394424..804682f64bd 100644 --- a/lldb/source/Core/FormatEntity.cpp +++ b/lldb/source/Core/FormatEntity.cpp @@ -1663,6 +1663,7 @@ FormatEntity::Format (const Entry &entry, if (language_plugin) { language_plugin_handled = language_plugin->GetFunctionDisplayName(sc, + exe_ctx, Language::FunctionNameRepresentation::eName, ss); } @@ -1713,6 +1714,7 @@ FormatEntity::Format (const Entry &entry, if (language_plugin) { language_plugin_handled = language_plugin->GetFunctionDisplayName(sc, + exe_ctx, Language::FunctionNameRepresentation::eNameWithNoArgs, ss); } @@ -1749,6 +1751,7 @@ FormatEntity::Format (const Entry &entry, if (language_plugin) { language_plugin_handled = language_plugin->GetFunctionDisplayName(sc, + exe_ctx, Language::FunctionNameRepresentation::eNameWithArgs, ss); } |