r184199 - Fix buildbot failure.
Fariborz Jahanian
fjahanian at apple.com
Tue Jun 18 08:54:31 PDT 2013
Author: fjahanian
Date: Tue Jun 18 10:54:30 2013
New Revision: 184199
URL: http://llvm.org/viewvc/llvm-project?rev=184199&view=rev
Log:
Fix buildbot failure.
Modified:
cfe/trunk/test/SemaObjC/call-super-2.m
Modified: cfe/trunk/test/SemaObjC/call-super-2.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/call-super-2.m?rev=184199&r1=184198&r2=184199&view=diff
==============================================================================
--- cfe/trunk/test/SemaObjC/call-super-2.m (original)
+++ cfe/trunk/test/SemaObjC/call-super-2.m Tue Jun 18 10:54:30 2013
@@ -35,7 +35,7 @@ id objc_getClass(const char *s);
@implementation Derived
+ (int) class_func1
{
- int i = (size_t)[self class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id'); did you mean '+class_func}}
+ int i = (size_t)[self class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}}
return i + (size_t)[super class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}}
}
+ (int) class_func2
More information about the cfe-commits
mailing list