diff options
author | Jim Ingham <jingham@apple.com> | 2011-11-01 02:46:54 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-11-01 02:46:54 +0000 |
commit | ce553d885abcce514e52618f0fd44f3c6940f171 (patch) | |
tree | 6eeb3eec23ea8d3a73cc27b1ed27f04efcc16cf3 /lldb/source/Plugins/Process/Utility/StopInfoMachException.h | |
parent | fc08bdcc5761b64b0affc5ba9d7ab19812402089 (diff) | |
download | bcm5719-llvm-ce553d885abcce514e52618f0fd44f3c6940f171.tar.gz bcm5719-llvm-ce553d885abcce514e52618f0fd44f3c6940f171.zip |
Enhanced the ObjC DynamicCheckerFunction to test for "object responds to selector" as well as
"object borked"... Also made the error when the checker fails reflect this fact rather than
report a crash at 0x0.
Also a little cleanup:
- StopInfoMachException had a redundant copy of the description string.
- ThreadPlanCallFunction had a redundant copy of the thread, and had a
copy of the process that it didn't really need.
llvm-svn: 143419
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/StopInfoMachException.h')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/StopInfoMachException.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Utility/StopInfoMachException.h b/lldb/source/Plugins/Process/Utility/StopInfoMachException.h index 9ddf7a530ce..a40bd71a91a 100644 --- a/lldb/source/Plugins/Process/Utility/StopInfoMachException.h +++ b/lldb/source/Plugins/Process/Utility/StopInfoMachException.h @@ -67,7 +67,6 @@ protected: uint32_t m_exc_data_count; uint64_t m_exc_code; uint64_t m_exc_subcode; - std::string m_description; }; |