2010-04-09 05:10:56 +08:00
|
|
|
// RUN: %clang_cc1 %s -verify -Wunused -Wunused-parameter -fsyntax-only
|
2009-11-17 16:57:36 +08:00
|
|
|
|
|
|
|
int printf(const char *, ...);
|
2007-09-27 06:06:30 +08:00
|
|
|
|
|
|
|
@interface Greeter
|
|
|
|
+ (void) hello;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Greeter
|
2010-02-25 11:26:51 +08:00
|
|
|
+ (void) hello { printf("Hello, World!\n"); }
|
2007-09-27 06:06:30 +08:00
|
|
|
@end
|
|
|
|
|
2009-08-12 04:08:52 +08:00
|
|
|
int test1(void) {
|
|
|
|
[Greeter hello];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-12 04:08:03 +08:00
|
|
|
@interface NSObject @end
|
|
|
|
@interface NSString : NSObject
|
|
|
|
- (int)length;
|
|
|
|
@end
|
|
|
|
|
2009-08-12 04:08:52 +08:00
|
|
|
void test2() {
|
2010-04-27 05:44:01 +08:00
|
|
|
@"pointless example call for test purposes".length; // expected-warning {{property access result unused - getters should not be used for side effects}}
|
2009-08-12 04:08:03 +08:00
|
|
|
}
|
|
|
|
|
2009-08-12 04:08:52 +08:00
|
|
|
@interface foo
|
|
|
|
- (int)meth: (int)x: (int)y: (int)z ;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation foo
|
|
|
|
- (int) meth: (int)x:
|
|
|
|
(int)y: // expected-warning{{unused}}
|
|
|
|
(int) __attribute__((unused))z { return x; }
|
|
|
|
@end
|
2010-02-25 11:26:51 +08:00
|
|
|
|
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
// The next test shows how clang accepted attribute((unused)) on ObjC
|
|
|
|
// instance variables, which GCC does not.
|
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
|
2010-03-06 06:43:32 +08:00
|
|
|
#if __has_feature(attribute_objc_ivar_unused)
|
|
|
|
#define UNUSED_IVAR __attribute__((unused))
|
|
|
|
#else
|
|
|
|
#error __attribute__((unused)) not supported on ivars
|
|
|
|
#endif
|
|
|
|
|
2010-02-25 11:26:51 +08:00
|
|
|
@interface TestUnusedIvar {
|
2010-03-06 06:43:32 +08:00
|
|
|
id y __attribute__((unused)); // no-warning
|
|
|
|
id x UNUSED_IVAR; // no-warning
|
2010-02-25 11:26:51 +08:00
|
|
|
}
|
|
|
|
@end
|
2010-03-06 06:43:32 +08:00
|
|
|
|