<rdar://problem/10658091>

Fixed dynamic types for objective C to not try and make everything dynamic including base classes.

llvm-svn: 147722
This commit is contained in:
Greg Clayton 2012-01-07 04:21:42 +00:00
parent bbf8c9a939
commit 11c99162c4
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ AppleObjCRuntime::CouldHaveDynamicValue (ValueObject &in_value)
{
lldb::LanguageType known_type = in_value.GetObjectRuntimeLanguage();
if (known_type == lldb::eLanguageTypeObjC)
return true;
return in_value.IsPossibleDynamicType ();
else
return in_value.IsPointerType();
}