diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2019-02-11 21:45:33 +0000 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2019-02-11 21:45:33 +0000 |
| commit | f75a9dc1a2bfcec8f0c6dea52814dc4d1907719c (patch) | |
| tree | 1255ddc07f79268a7c93f46735852b445fc5f1e9 /lldb/source | |
| parent | 31ad39c51f067cc68d4c8cc296d43f416a3937ec (diff) | |
| download | bcm5719-llvm-f75a9dc1a2bfcec8f0c6dea52814dc4d1907719c.tar.gz bcm5719-llvm-f75a9dc1a2bfcec8f0c6dea52814dc4d1907719c.zip | |
Fixed function name in log statement
llvm-svn: 353753
Diffstat (limited to 'lldb/source')
| -rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp index 8a994bacf36..27985d02dfd 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp @@ -1185,8 +1185,8 @@ lldb_private::Status ClangExpressionParser::PrepareForExecution( process->SetDynamicCheckers(dynamic_checkers); if (log) - log->Printf("== [ClangUserExpression::Evaluate] Finished " - "installing dynamic checkers =="); + log->Printf("== [ClangExpressionParser::PrepareForExecution] " + "Finished installing dynamic checkers =="); } IRDynamicChecks ir_dynamic_checks(*process->GetDynamicCheckers(), |

