summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2015-11-05 00:24:18 +0000
committerJim Ingham <jingham@apple.com>2015-11-05 00:24:18 +0000
commit51148e9f942ed4dc959f0dc462c8259c57f1487e (patch)
treeab7fc5eb1a20523d472387bedf1826d292de1316 /lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
parent0626919015d415ae698bc8fe12db7b2dea12e4ca (diff)
downloadbcm5719-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.h7
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;
OpenPOWER on IntegriCloud