diff options
author | Jim Ingham <jingham@apple.com> | 2010-09-30 21:21:43 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-09-30 21:21:43 +0000 |
commit | 86103ea237caf915485061fe2172134637f81e2c (patch) | |
tree | c00546243f6870d6ea821afcb7f53eaf13e73238 | |
parent | 3fd2928a45dfb6eeaf01d63f5285f4f7512ddc1f (diff) | |
download | bcm5719-llvm-86103ea237caf915485061fe2172134637f81e2c.tar.gz bcm5719-llvm-86103ea237caf915485061fe2172134637f81e2c.zip |
Change how we call Target::CreateBreakpoint to account for the new "name type" parameter.
llvm-svn: 115210
-rw-r--r-- | lldb/source/API/SBTarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index f34b0142cb2..b87e56c1dcb 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -225,11 +225,11 @@ SBTarget::BreakpointCreateByName (const char *symbol_name, const char *module_na if (module_name && module_name[0]) { FileSpec module_file_spec(module_name); - *sb_bp = m_opaque_sp->CreateBreakpoint (&module_file_spec, symbol_name, false); + *sb_bp = m_opaque_sp->CreateBreakpoint (&module_file_spec, symbol_name, eFunctionNameTypeFull | eFunctionNameTypeBase, false); } else { - *sb_bp = m_opaque_sp->CreateBreakpoint (NULL, symbol_name, false); + *sb_bp = m_opaque_sp->CreateBreakpoint (NULL, symbol_name, eFunctionNameTypeFull | eFunctionNameTypeBase, false); } } return sb_bp; |