diff --git a/lldb/include/lldb/Expression/ClangUserExpression.h b/lldb/include/lldb/Expression/ClangUserExpression.h index 8713606cbbdee3ce5bd290ec03915ac800d6dd22..68ea2beab25d73c2c567fae304010ee534500091 100644 --- a/lldb/include/lldb/Expression/ClangUserExpression.h +++ b/lldb/include/lldb/Expression/ClangUserExpression.h @@ -95,11 +95,11 @@ public: ThreadPlan * GetThreadPlanToExecuteJITExpression (Stream &error_stream, - ExecutionContext &exe_ctx); + ExecutionContext &exe_ctx); bool FinalizeJITExecution (Stream &error_stream, - ExecutionContext &exe_ctx, - ClangExpressionVariable *&result); + ExecutionContext &exe_ctx, + ClangExpressionVariable *&result); //------------------------------------------------------------------ /// Return the string that the parser should parse. Must be a full @@ -204,7 +204,7 @@ private: PrepareToExecuteJITExpression (Stream &error_stream, ExecutionContext &exe_ctx, lldb::addr_t &struct_address, - lldb::addr_t object_ptr); + lldb::addr_t &object_ptr); std::string m_expr_text; ///< The text of the expression, as typed by the user std::string m_transformed_text; ///< The text of the expression, as send to the parser diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index 7a28f97bb1c17a7fb93dafc66358d84f13645794..0e454a7cee94a0a981886eade233194942d6ca6d 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -216,9 +216,9 @@ ClangUserExpression::Parse (Stream &error_stream, ExecutionContext &exe_ctx) bool ClangUserExpression::PrepareToExecuteJITExpression (Stream &error_stream, - ExecutionContext &exe_ctx, - lldb::addr_t &struct_address, - lldb::addr_t object_ptr) + ExecutionContext &exe_ctx, + lldb::addr_t &struct_address, + lldb::addr_t &object_ptr) { Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS);