diff options
author | Greg Clayton <gclayton@apple.com> | 2011-08-11 04:30:39 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-08-11 04:30:39 +0000 |
commit | 0c02e4eaeadec31e248c41aee403df9f0e2a8d92 (patch) | |
tree | 2ae6571ff73f4d976d935a1dd5ae38e7643cd704 /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | 93b3e848de795e7511638e29ae2a49487efa7302 (diff) | |
download | bcm5719-llvm-0c02e4eaeadec31e248c41aee403df9f0e2a8d92.tar.gz bcm5719-llvm-0c02e4eaeadec31e248c41aee403df9f0e2a8d92.zip |
Fix the broken build that happened with my last checkin.
llvm-svn: 137300
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index d2bd858c6dd..b1d859ee7cf 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -80,7 +80,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, { if (log) log->Printf ("Could not find object file for module \"%s\".", - executableModuleSP->GetFileSpec().GetFilename().AsCString()); + exe_module->GetFileSpec().GetFilename().AsCString()); return; } m_start_addr = objectFile->GetEntryPointAddress(); @@ -88,7 +88,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, { if (log) log->Printf ("Could not find entry point address for executable module \"%s\".", - executableModuleSP->GetFileSpec().GetFilename().AsCString()); + exe_module->GetFileSpec().GetFilename().AsCString()); return; } } @@ -196,7 +196,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, { if (log) log->Printf ("Could not find object file for module \"%s\".", - executableModuleSP->GetFileSpec().GetFilename().AsCString()); + exe_module->GetFileSpec().GetFilename().AsCString()); return; } m_start_addr = objectFile->GetEntryPointAddress(); |