comp-types-12.mm: New.
authorZiemowit Laski <zlaski@apple.com>
Thu, 26 May 2005 21:24:29 +0000 (21:24 +0000)
committerZiemowit Laski <zlaski@gcc.gnu.org>
Thu, 26 May 2005 21:24:29 +0000 (21:24 +0000)
[gcc/testsuite/ChangeLog]
2005-05-26  Ziemowit Laski  <zlaski@apple.com>

        * obj-c++.dg/comp-types-12.mm: New.
        * objc.dg/comp-types-11.m: New.
        * objc.dg/selector-4.m: New.

From-SVN: r100226

gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/comp-types-12.mm [new file with mode: 0644]
gcc/testsuite/objc.dg/comp-types-11.m [new file with mode: 0644]
gcc/testsuite/objc.dg/selector-4.m [new file with mode: 0644]

index 7e3826f02bbbb85720384b6296dab3840f2e0245..8f6bd148f65f69a19d16095388aa4e3937a5c26f 100644 (file)
@@ -1,3 +1,9 @@
+2005-05-26  Ziemowit Laski  <zlaski@apple.com>
+
+       * obj-c++.dg/comp-types-12.mm: New.
+       * objc.dg/comp-types-11.m: New.
+       * objc.dg/selector-4.m: New.
+
 2005-05-26  Andreas Jaeger  <aj@suse.de>
 
        PR testsuite/20772
diff --git a/gcc/testsuite/obj-c++.dg/comp-types-12.mm b/gcc/testsuite/obj-c++.dg/comp-types-12.mm
new file mode 100644 (file)
index 0000000..b041759
--- /dev/null
@@ -0,0 +1,14 @@
+/* { dg-do compile } */
+#include <objc/Object.h>
+
+@interface Derived: Object
+@end
+
+extern Object* foo(void);
+static Derived *test(void)
+{
+   Derived *m = foo();   /* { dg-warning "initialization from distinct Objective\\-C type" } */
+
+   return m;
+}
+
diff --git a/gcc/testsuite/objc.dg/comp-types-11.m b/gcc/testsuite/objc.dg/comp-types-11.m
new file mode 100644 (file)
index 0000000..b041759
--- /dev/null
@@ -0,0 +1,14 @@
+/* { dg-do compile } */
+#include <objc/Object.h>
+
+@interface Derived: Object
+@end
+
+extern Object* foo(void);
+static Derived *test(void)
+{
+   Derived *m = foo();   /* { dg-warning "initialization from distinct Objective\\-C type" } */
+
+   return m;
+}
+
diff --git a/gcc/testsuite/objc.dg/selector-4.m b/gcc/testsuite/objc.dg/selector-4.m
new file mode 100644 (file)
index 0000000..d34f8c8
--- /dev/null
@@ -0,0 +1,30 @@
+/* Test whether including C++ keywords such as 'and', 'or',
+   'not', etc., is allowed inside ObjC selectors (as it must be).  */
+/* Author: Ziemowit Laski <zlaski@apple.com>.  */
+
+/* { dg-do compile } */
+
+@interface Int1 
++ (int)and_eq:(int)arg1 and:(int)arg2;
+- (int)or_eq:(int)arg1 or:(int)arg3;
+- (int)not:(int)arg1 xor:(int)arg2;
+- (void)bitand:(char)c1 bitor:(char)c2;
+- (void)compl:(float)f1 xor_eq:(double)d1;
+- (void)not_eq;
+@end
+
+@implementation Int1
++ (int)and_eq:(int)arg1 and:(int)arg2 { return arg1 + arg2; }
+- (int)or_eq:(int)arg1 or:(int)arg3 { return arg1 + arg3; }
+- (int)not:(int)arg1 xor:(int)arg2 { return arg1 + arg2; }
+- (void)bitand:(char)c1 bitor:(char)c2 { }
+- (void)compl:(float)f1 xor_eq:(double)d1 { }
+- (void)not_eq { }
+@end
+
+/* { dg-final { scan-assembler  "\\+\\\[Int1 and_eq:and:\\]|c_Int1__and_eq_and" } } */
+/* { dg-final { scan-assembler  "\\-\\\[Int1 or_eq:or:\\]|i_Int1__or_eq_or" } } */
+/* { dg-final { scan-assembler  "\\-\\\[Int1 not:xor:\\]|i_Int1__not_xor" } } */
+/* { dg-final { scan-assembler  "\\-\\\[Int1 bitand:bitor:\\]|i_Int1__bitand_bitor" } } */
+/* { dg-final { scan-assembler  "\\-\\\[Int1 compl:xor_eq:\\]|i_Int1__compl_xor_eq" } } */
+/* { dg-final { scan-assembler  "\\-\\\[Int1 not_eq\\]|i_Int1__not_eq" } } */