diff options
author | Mike Stump <mrs@apple.com> | 2007-04-13 20:43:22 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-04-13 20:43:22 +0000 |
commit | a35fc190fb3fd8b042a0b3fd7ca0b67da3fc0510 (patch) | |
tree | 36bc87a906790234eb7544f1b58ac39676074195 | |
parent | ec3643e8c44fc45b73f70f6a5a3876f2efb966fa (diff) | |
download | gcc-a35fc190fb3fd8b042a0b3fd7ca0b67da3fc0510.zip gcc-a35fc190fb3fd8b042a0b3fd7ca0b67da3fc0510.tar.gz gcc-a35fc190fb3fd8b042a0b3fd7ca0b67da3fc0510.tar.bz2 |
stubify-1.mm: Only run on powerpc.
* obj-c++.dg/stubify-1.mm: Only run on powerpc.
* obj-c++.dg/template-4.mm: Don't run when 64-bit.
From-SVN: r123798
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/obj-c++.dg/comp-types-11.mm | 1 | ||||
-rw-r--r-- | gcc/testsuite/obj-c++.dg/comp-types-12.mm | 1 | ||||
-rw-r--r-- | gcc/testsuite/obj-c++.dg/method-17.mm | 1 | ||||
-rw-r--r-- | gcc/testsuite/obj-c++.dg/stubify-1.mm | 2 | ||||
-rw-r--r-- | gcc/testsuite/obj-c++.dg/template-4.mm | 1 | ||||
-rw-r--r-- | gcc/testsuite/objc.dg/comp-types-10.m | 1 |
7 files changed, 7 insertions, 5 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c514a3e..2b0d880 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-04-13 Mike Stump <mrs@apple.com> + + * obj-c++.dg/stubify-1.mm: Only run on powerpc. + * obj-c++.dg/template-4.mm: Don't run when 64-bit. + 2007-04-13 Joseph Myers <joseph@codesourcery.com> PR tree-optimization/29598 diff --git a/gcc/testsuite/obj-c++.dg/comp-types-11.mm b/gcc/testsuite/obj-c++.dg/comp-types-11.mm index 8cd5340..c28a2a5 100644 --- a/gcc/testsuite/obj-c++.dg/comp-types-11.mm +++ b/gcc/testsuite/obj-c++.dg/comp-types-11.mm @@ -25,4 +25,3 @@ id<Foo> func(void) { return o; /* { dg-warning "distinct Objective\\-C type in return" } */ } @end - diff --git a/gcc/testsuite/obj-c++.dg/comp-types-12.mm b/gcc/testsuite/obj-c++.dg/comp-types-12.mm index b041759..00e6e3a 100644 --- a/gcc/testsuite/obj-c++.dg/comp-types-12.mm +++ b/gcc/testsuite/obj-c++.dg/comp-types-12.mm @@ -11,4 +11,3 @@ static Derived *test(void) return m; } - diff --git a/gcc/testsuite/obj-c++.dg/method-17.mm b/gcc/testsuite/obj-c++.dg/method-17.mm index a7f27f8..a9b74be 100644 --- a/gcc/testsuite/obj-c++.dg/method-17.mm +++ b/gcc/testsuite/obj-c++.dg/method-17.mm @@ -30,4 +30,3 @@ int main(void) [foo brokenType: (int)d floatingPoint: d]; return 0; } - diff --git a/gcc/testsuite/obj-c++.dg/stubify-1.mm b/gcc/testsuite/obj-c++.dg/stubify-1.mm index dd7ce3b..0dafa4b 100644 --- a/gcc/testsuite/obj-c++.dg/stubify-1.mm +++ b/gcc/testsuite/obj-c++.dg/stubify-1.mm @@ -1,7 +1,7 @@ /* All calls must be properly stubified. Complain about any "call _objc_msgSend<end-of-line>" without the $stub suffix. */ -/* { dg-do compile { target *-*-darwin* } } */ +/* { dg-do compile { target powerpc*-*-darwin* } } */ /* { dg-options "-Os -mdynamic-no-pic -fno-exceptions" } */ typedef struct objc_object { } *id ; diff --git a/gcc/testsuite/obj-c++.dg/template-4.mm b/gcc/testsuite/obj-c++.dg/template-4.mm index 6500cff..25a1df9 100644 --- a/gcc/testsuite/obj-c++.dg/template-4.mm +++ b/gcc/testsuite/obj-c++.dg/template-4.mm @@ -1,6 +1,7 @@ /* Author: Ziemowit Laski <zlaski@apple.com>. */ /* { dg-do run } */ +/* { dg-skip-if "" { *-*-darwin* } { "-m64" } { "" } } */ #include <objc/Object.h> #include <stdarg.h> diff --git a/gcc/testsuite/objc.dg/comp-types-10.m b/gcc/testsuite/objc.dg/comp-types-10.m index 8cd5340..c28a2a5 100644 --- a/gcc/testsuite/objc.dg/comp-types-10.m +++ b/gcc/testsuite/objc.dg/comp-types-10.m @@ -25,4 +25,3 @@ id<Foo> func(void) { return o; /* { dg-warning "distinct Objective\\-C type in return" } */ } @end - |