]> granicus.if.org Git - clang/commitdiff
merge two tests.
authorChris Lattner <sabre@nondot.org>
Tue, 11 Aug 2009 20:08:52 +0000 (20:08 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 11 Aug 2009 20:08:52 +0000 (20:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78705 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaObjC/unused.m
test/SemaObjC/warn-unused-parameters.m [deleted file]

index d4660cdc009d5fc6d87ab76f711268fa0aa0e911..44d31ab7ec75e8e3e37a668057ed96eacdd09f16 100644 (file)
 @end
 
 
+int test1(void) {
+  [Greeter hello];
+  return 0;
+}
+
 
 
 @interface NSObject @end
 - (int)length;
 @end
 
-void test() {
+void test2() {
   // No unused warning: rdar://7126285
   @"pointless example call for test purposes".length;
 }
 
 
 
-int main (void) {
-    [Greeter hello];
-    return 0;
-}
 
+
+@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
diff --git a/test/SemaObjC/warn-unused-parameters.m b/test/SemaObjC/warn-unused-parameters.m
deleted file mode 100644 (file)
index 618dc3f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// RUN: clang -fsyntax-only -Wunused -Xclang -verify %s
-
-@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