summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2016-08-06 00:57:07 +0000
committerEnrico Granata <egranata@apple.com>2016-08-06 00:57:07 +0000
commit0765abf7723e2cbd907c48915f96a77f4ba0bee1 (patch)
tree9fcc680ec4a682b09aaf33bca63c0ac56732a579 /lldb/source/Plugins
parent62a459603c2b9cf219a3102146d285a860f1cef7 (diff)
downloadbcm5719-llvm-0765abf7723e2cbd907c48915f96a77f4ba0bee1.tar.gz
bcm5719-llvm-0765abf7723e2cbd907c48915f96a77f4ba0bee1.zip
The lack of classes in the hash table is not an error - it's very legitimately possible for a process to define no ObjC classes of its own. Discovered by debugging /bin/ls
llvm-svn: 277897
Diffstat (limited to 'lldb/source/Plugins')
-rw-r--r--lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
index caa875ebd91..2160274f2b3 100644
--- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
@@ -1389,7 +1389,7 @@ AppleObjCRuntimeV2::UpdateISAToDescriptorMapDynamic(RemoteNXMapTable &hash_table
{
if (log)
log->Printf ("No dynamic classes found in gdb_objc_realized_classes.");
- return DescriptorMapUpdateResult::Fail();
+ return DescriptorMapUpdateResult::Success(0);
}
// Make some types for our arguments
OpenPOWER on IntegriCloud