diff options
| author | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-18 18:08:21 +0000 |
|---|---|---|
| committer | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-18 18:08:21 +0000 |
| commit | b9b0a5bcc22ef0d5b243b2ccef6d96ba49bef03a (patch) | |
| tree | 8333135d2095b48f2557a439f70b94c1d30a9692 | |
| parent | da8938ed916c372740026059c97fb8df1daaa3af (diff) | |
| download | ppe42-gcc-b9b0a5bcc22ef0d5b243b2ccef6d96ba49bef03a.tar.gz ppe42-gcc-b9b0a5bcc22ef0d5b243b2ccef6d96ba49bef03a.zip | |
* gcc.dg/ppc-bitfield1.c: Skip if not LP64, don't specify -m64.
* gcc.dg/ppc-and-1.c: Ditto.
* gcc.dg/ppc-compare-1.c: Ditto.
* gcc.dg/ppc-mov-1.c: Ditto
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90875 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/ppc-and-1.c | 3 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/ppc-bitfield1.c | 3 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/ppc-compare-1.c | 3 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/ppc-mov-1.c | 3 |
5 files changed, 15 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 318343316bf..e8776f70616 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2004-11-18 Janis Johnson <janis187@us.ibm.com> + + * gcc.dg/ppc-bitfield1.c: Skip if not LP64, don't specify -m64. + * gcc.dg/ppc-and-1.c: Ditto. + * gcc.dg/ppc-compare-1.c: Ditto. + * gcc.dg/ppc-mov-1.c: Ditto + 2004-11-18 Daniel Jacobowitz <dan@codesourcery.com> Mark Mitchell <mark@codesourcery.com> diff --git a/gcc/testsuite/gcc.dg/ppc-and-1.c b/gcc/testsuite/gcc.dg/ppc-and-1.c index 88a4b7a88cd..7f1c618ff52 100644 --- a/gcc/testsuite/gcc.dg/ppc-and-1.c +++ b/gcc/testsuite/gcc.dg/ppc-and-1.c @@ -1,5 +1,6 @@ /* { dg-do compile { target powerpc64-*-* } } */ -/* { dg-options "-m64 -O2" } */ +/* { dg-require-effective-target lp64 } */ +/* { dg-options "-O2" } */ /* { dg-final { scan-assembler "rlwinm \[0-9\]+,\[0-9\]+,0,0,30" } } */ /* { dg-final { scan-assembler "rlwinm \[0-9\]+,\[0-9\]+,0,29,30" } } */ diff --git a/gcc/testsuite/gcc.dg/ppc-bitfield1.c b/gcc/testsuite/gcc.dg/ppc-bitfield1.c index c4b73a7f5d5..6af77541f7c 100644 --- a/gcc/testsuite/gcc.dg/ppc-bitfield1.c +++ b/gcc/testsuite/gcc.dg/ppc-bitfield1.c @@ -1,5 +1,6 @@ /* { dg-do compile { target powerpc64-*-* } } */ -/* { dg-options "-m64 -O2" } */ +/* { dg-require-effective-target lp64 } */ +/* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "rlwinm \[0-9\]+,\[0-9\]+,\[0-9\]+,1,31" } } */ /* { dg-final { scan-assembler-not "rlwinm \[0-9\]+,\[0-9\]+,\[0-9\]+,0xffffffff" } } */ diff --git a/gcc/testsuite/gcc.dg/ppc-compare-1.c b/gcc/testsuite/gcc.dg/ppc-compare-1.c index 07aee48a576..b5670ab53b1 100644 --- a/gcc/testsuite/gcc.dg/ppc-compare-1.c +++ b/gcc/testsuite/gcc.dg/ppc-compare-1.c @@ -1,5 +1,6 @@ /* { dg-do compile { target powerpc64-*-* } } */ -/* { dg-options "-m64 -O2" } */ +/* { dg-require-effective-target lp64 } */ +/* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "cmpw" } } */ diff --git a/gcc/testsuite/gcc.dg/ppc-mov-1.c b/gcc/testsuite/gcc.dg/ppc-mov-1.c index 4256b60ca0e..7b541e258a8 100644 --- a/gcc/testsuite/gcc.dg/ppc-mov-1.c +++ b/gcc/testsuite/gcc.dg/ppc-mov-1.c @@ -1,5 +1,6 @@ /* { dg-do compile { target powerpc64-*-* } } */ -/* { dg-options "-m64 -O2" } */ +/* { dg-require-effective-target lp64 } */ +/* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "fmr \[0-9\]+,\[0-9\]+" } } |

