diff options
| author | Jim Ingham <jingham@apple.com> | 2015-11-05 00:24:18 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2015-11-05 00:24:18 +0000 |
| commit | 51148e9f942ed4dc959f0dc462c8259c57f1487e (patch) | |
| tree | ab7fc5eb1a20523d472387bedf1826d292de1316 /lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h | |
| parent | 0626919015d415ae698bc8fe12db7b2dea12e4ca (diff) | |
| download | bcm5719-llvm-51148e9f942ed4dc959f0dc462c8259c57f1487e.tar.gz bcm5719-llvm-51148e9f942ed4dc959f0dc462c8259c57f1487e.zip | |
AddInitialArguments -> AddArguments, and we pass in the struct_address and push it too. All the
callers had to do this by hand and we ended up never actually adding initial arguments and then
reusing them by passing in the struct address separately, so the distinction wasn't needed.
llvm-svn: 252108
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h')
| -rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h index 042a070ff20..f2bfe31dce0 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h @@ -188,9 +188,10 @@ private: lldb_private::Error &err) override; bool - AddInitialArguments (ExecutionContext &exe_ctx, - std::vector<lldb::addr_t> &args, - Stream &error_stream) override; + AddArguments (ExecutionContext &exe_ctx, + std::vector<lldb::addr_t> &args, + lldb::addr_t struct_address, + Stream &error_stream) override; ClangUserExpressionHelper m_type_system_helper; |

