Author: bwilson Date: Tue Mar 11 12:17:16 2014 New Revision: 203588 URL: http://llvm.org/viewvc/llvm-project?rev=203588&view=rev Log: Remove trailing whitespace introduced in r203028.
Modified: cfe/trunk/lib/Sema/SemaObjCProperty.cpp cfe/trunk/test/SemaObjC/default-synthesize-3.m Modified: cfe/trunk/lib/Sema/SemaObjCProperty.cpp URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaObjCProperty.cpp?rev=203588&r1=203587&r2=203588&view=diff ============================================================================== --- cfe/trunk/lib/Sema/SemaObjCProperty.cpp (original) +++ cfe/trunk/lib/Sema/SemaObjCProperty.cpp Tue Mar 11 12:17:16 2014 @@ -1540,12 +1540,12 @@ static bool SuperClassImplementsProperty bool SuperClassImplementsSetter = false; if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly) SuperClassImplementsSetter = true; - + while (IDecl->getSuperClass()) { ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) SuperClassImplementsGetter = true; - + if (!SuperClassImplementsSetter && SDecl->getInstanceMethod(Prop->getSetterName())) SuperClassImplementsSetter = true; if (SuperClassImplementsGetter && SuperClassImplementsSetter) Modified: cfe/trunk/test/SemaObjC/default-synthesize-3.m URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/default-synthesize-3.m?rev=203588&r1=203587&r2=203588&view=diff ============================================================================== --- cfe/trunk/test/SemaObjC/default-synthesize-3.m (original) +++ cfe/trunk/test/SemaObjC/default-synthesize-3.m Tue Mar 11 12:17:16 2014 @@ -202,10 +202,10 @@ typedef NSObject<Fooing> FooObject; @protocol r16089191Protocol @property (readonly) NSURL *fileURL; -@property (copy) NSURL *file; -@property (copy) NSURL *fileSys; -@property (copy) NSURL *fileLog; -@property (copy) NSURL *fileKerl; +@property (copy) NSURL *file; +@property (copy) NSURL *fileSys; +@property (copy) NSURL *fileLog; +@property (copy) NSURL *fileKerl; @end @interface SubClass : SuperClass <r16089191Protocol> _______________________________________________ cfe-commits mailing list cfe-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits