diff options
-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 3183433..e8776f7 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 88a4b7a..7f1c618 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 c4b73a7..6af7754 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 07aee48..b5670ab 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 4256b60..7b541e2 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\]+" } } |