From 5b3bcba2468542faf69d6fbd9a932b700c542053 Mon Sep 17 00:00:00 2001 From: Ziemowit Laski Date: Thu, 26 May 2005 21:24:29 +0000 Subject: [PATCH] comp-types-12.mm: New. [gcc/testsuite/ChangeLog] 2005-05-26 Ziemowit Laski * 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 | 6 +++++ gcc/testsuite/obj-c++.dg/comp-types-12.mm | 14 +++++++++++ gcc/testsuite/objc.dg/comp-types-11.m | 14 +++++++++++ gcc/testsuite/objc.dg/selector-4.m | 30 +++++++++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 gcc/testsuite/obj-c++.dg/comp-types-12.mm create mode 100644 gcc/testsuite/objc.dg/comp-types-11.m create mode 100644 gcc/testsuite/objc.dg/selector-4.m diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7e3826f02bb..8f6bd148f65 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2005-05-26 Ziemowit Laski + + * 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 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 index 00000000000..b041759ca65 --- /dev/null +++ b/gcc/testsuite/obj-c++.dg/comp-types-12.mm @@ -0,0 +1,14 @@ +/* { dg-do compile } */ +#include + +@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 index 00000000000..b041759ca65 --- /dev/null +++ b/gcc/testsuite/objc.dg/comp-types-11.m @@ -0,0 +1,14 @@ +/* { dg-do compile } */ +#include + +@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 index 00000000000..d34f8c89cd6 --- /dev/null +++ b/gcc/testsuite/objc.dg/selector-4.m @@ -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 . */ + +/* { 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" } } */ -- 2.30.2