[Lldb-commits] [PATCH] D47481: Initialize FunctionCaller::m_struct_valid

Phabricator via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu May 31 13:05:31 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL333690: Set m_struct_valid to initial value in ctor.   (authored by jmolenda, committed by ).
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

https://reviews.llvm.org/D47481

Files:
  lldb/trunk/source/Expression/FunctionCaller.cpp


Index: lldb/trunk/source/Expression/FunctionCaller.cpp
===================================================================
--- lldb/trunk/source/Expression/FunctionCaller.cpp
+++ lldb/trunk/source/Expression/FunctionCaller.cpp
@@ -48,7 +48,8 @@
       m_function_return_type(return_type),
       m_wrapper_function_name("__lldb_caller_function"),
       m_wrapper_struct_name("__lldb_caller_struct"), m_wrapper_args_addrs(),
-      m_arg_values(arg_value_list), m_compiled(false), m_JITted(false) {
+      m_struct_valid(false), m_arg_values(arg_value_list), m_compiled(false),
+      m_JITted(false) {
   m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
   // Can't make a FunctionCaller without a process.
   assert(m_jit_process_wp.lock());


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47481.149345.patch
Type: text/x-patch
Size: 761 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20180531/73225139/attachment.bin>


More information about the lldb-commits mailing list