[Lldb-commits] [lldb] r116638 - /lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntimeV2/AppleObjCRuntimeV2.cpp
Jim Ingham
jingham at apple.com
Fri Oct 15 15:53:49 PDT 2010
Author: jingham
Date: Fri Oct 15 17:53:49 2010
New Revision: 116638
URL: http://llvm.org/viewvc/llvm-project?rev=116638&view=rev
Log:
Use the ValueObject directly where possible.
Modified:
lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntimeV2/AppleObjCRuntimeV2.cpp
Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntimeV2/AppleObjCRuntimeV2.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntimeV2/AppleObjCRuntimeV2.cpp?rev=116638&r1=116637&r2=116638&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntimeV2/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntimeV2/AppleObjCRuntimeV2.cpp Fri Oct 15 17:53:49 2010
@@ -41,7 +41,7 @@
{
// ObjC objects can only be pointers:
- if (!ClangASTContext::IsPointerType (object.GetClangType()))
+ if (!object.IsPointerType())
return NULL;
// Make the argument list: we pass one arg, the address of our pointer, to the print function.
More information about the lldb-commits
mailing list