diff options
author | Ziemowit Laski <zlaski@apple.com> | 2005-05-26 21:24:29 +0000 |
---|---|---|
committer | Ziemowit Laski <zlaski@gcc.gnu.org> | 2005-05-26 21:24:29 +0000 |
commit | 5b3bcba2468542faf69d6fbd9a932b700c542053 (patch) | |
tree | fcc43190731c1d3ac22017821fd7e01a932b6d7f | |
parent | a9f9113a2473301a3641fc284e41c5b7dd5019f9 (diff) | |
download | gcc-5b3bcba2468542faf69d6fbd9a932b700c542053.zip gcc-5b3bcba2468542faf69d6fbd9a932b700c542053.tar.gz gcc-5b3bcba2468542faf69d6fbd9a932b700c542053.tar.bz2 |
comp-types-12.mm: New.
[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
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/obj-c++.dg/comp-types-12.mm | 14 | ||||
-rw-r--r-- | gcc/testsuite/objc.dg/comp-types-11.m | 14 | ||||
-rw-r--r-- | gcc/testsuite/objc.dg/selector-4.m | 30 |
4 files changed, 64 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7e3826f..8f6bd14 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 index 0000000..b041759 --- /dev/null +++ b/gcc/testsuite/obj-c++.dg/comp-types-12.mm @@ -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 index 0000000..b041759 --- /dev/null +++ b/gcc/testsuite/objc.dg/comp-types-11.m @@ -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 index 0000000..d34f8c8 --- /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 <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" } } */ |