Vendor import of lldb release_38 branch r257836:

https://llvm.org/svn/llvm-project/lldb/branches/release_38@257836
This commit is contained in:
Dimitry Andric 2016-01-16 17:22:30 +00:00
parent 7fed546d19
commit 3fb4ff8c1b
2 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include "lldb/Target/ThreadPlanCallFunction.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/DerivedTypes.h"
namespace lldb_private {

View File

@ -1000,7 +1000,8 @@ SBProcess::GetRestartedFromEvent (const SBEvent &event)
bool ret_val = Process::ProcessEventData::GetRestartedFromEvent (event.get());
if (log)
log->Printf ("SBProcess::%s (event.sp=%p) => %d", __FUNCTION__, event.get(), ret_val);
log->Printf ("SBProcess::%s (event.sp=%p) => %d", __FUNCTION__,
static_cast<void*>(event.get()), ret_val);
return ret_val;
}