diff options
author | Stephen Wilson <wilsons@start.ca> | 2010-07-17 00:56:13 +0000 |
---|---|---|
committer | Stephen Wilson <wilsons@start.ca> | 2010-07-17 00:56:13 +0000 |
commit | 50bd94f9618fe5e1f8510ebb2539b6848a3fcacd (patch) | |
tree | 36d847dc3d814027081e8e533c41817996ecfffd /lldb/source/Target/Process.cpp | |
parent | 6b4067c14e140e164139d052c422a8e80ce249be (diff) | |
download | bcm5719-llvm-50bd94f9618fe5e1f8510ebb2539b6848a3fcacd.tar.gz bcm5719-llvm-50bd94f9618fe5e1f8510ebb2539b6848a3fcacd.zip |
Have Process::CreateBreakpointSite return a break_id_t instead of a user_id_t.
Also, update BreakpointLocation::ResolveBreakpointSite to check for invalid
breakpoint ID's using the proper magic constant.
llvm-svn: 108598
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r-- | lldb/source/Target/Process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 7bc51abb8ed..10312daf6c9 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -522,7 +522,7 @@ Process::EnableBreakpointSiteByID (lldb::user_id_t break_id) return error; } -lldb::user_id_t +lldb::break_id_t Process::CreateBreakpointSite (BreakpointLocationSP &owner, bool use_hardware) { const addr_t load_addr = owner->GetAddress().GetLoadAddress (this); |