diff options
author | Paul Brook <paul@codesourcery.com> | 2005-12-22 18:43:21 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2005-12-22 18:43:21 +0000 |
commit | 19b68a48afcec88625ca82b2edf641469a77ce02 (patch) | |
tree | 714acb6aa044dd88e22116a9d8967362c2e30dc8 /gcc | |
parent | f71d94055a48249361c773963d781524f9043bb4 (diff) | |
download | gcc-19b68a48afcec88625ca82b2edf641469a77ce02.zip gcc-19b68a48afcec88625ca82b2edf641469a77ce02.tar.gz gcc-19b68a48afcec88625ca82b2edf641469a77ce02.tar.bz2 |
loop-1.c: Look for jump/branch on m68k.
2005-12-22 Paul Brook <paul@codesourcery.com>
* gcc.dg/tree-ssa/loop-1.c: Look for jump/branch on m68k.
From-SVN: r108963
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/loop-1.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e829f8e..7bfb7cd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-12-22 Paul Brook <paul@codesourcery.com> + + * gcc.dg/tree-ssa/loop-1.c: Look for jump/branch on m68k. + 2005-12-22 Andrew Pinski <pinskia@physics.uc.edu> PR tree-opt/25513 diff --git a/gcc/testsuite/gcc.dg/tree-ssa/loop-1.c b/gcc/testsuite/gcc.dg/tree-ssa/loop-1.c index 1e144fd..011e55b 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/loop-1.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/loop-1.c @@ -35,11 +35,13 @@ void xxx(void) and to do the actual call - bsr is only generated by link time relaxation. */ /* CRIS keeps the address in a register. */ +/* m68k sometimes puts the address in a register, depending on CPU and PIC. */ -/* { dg-final { scan-assembler-times "foo" 5 { xfail hppa*-*-* ia64*-*-* sh*-*-* cris-*-* } } } */ +/* { dg-final { scan-assembler-times "foo" 5 { xfail hppa*-*-* ia64*-*-* sh*-*-* cris-*-* m68k-*-* } } } */ /* { dg-final { scan-assembler-times "foo,%r" 5 { target hppa*-*-* } } } */ /* { dg-final { scan-assembler-times "= foo" 5 { target ia64*-*-* } } } */ /* { dg-final { scan-assembler-times "jsr|blink\ttr?,r18" 5 { target sh*-*-* } } } */ /* { dg-final { scan-assembler-times "Jsr \\\$r" 5 { target cris-*-* } } } */ +/* { dg-final { scan-assembler-times "\[jb\]sr" 5 { target m68k-*-* } } } */ |