diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2017-08-16 20:44:28 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2017-08-16 20:44:28 +0200 |
commit | 7911a54d98bfdc117c2140cce0927a3755e0644d (patch) | |
tree | 78d3cfe51a5569068afdb57afbeb962a1c262dd5 /gcc | |
parent | b68a9f34f170f48a08c737d1cbfdc147dc42f275 (diff) | |
download | gcc-7911a54d98bfdc117c2140cce0927a3755e0644d.zip gcc-7911a54d98bfdc117c2140cce0927a3755e0644d.tar.gz gcc-7911a54d98bfdc117c2140cce0927a3755e0644d.tar.bz2 |
patchable_function_entry-decl.c (dg-final): Adapt scan-assembler-times for alpha*-*-*.
* c-c++-common/patchable_function_entry-decl.c (dg-final): Adapt
scan-assembler-times for alpha*-*-*.
* c-c++-common/patchable_function_entry-default.c (dg-final): Ditto.
* c-c++-common/patchable_function_entry-definition.c (dg-final): Ditto.
From-SVN: r251126
Diffstat (limited to 'gcc')
4 files changed, 13 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 260cc38..c6f729a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2017-08-16 Uros Bizjak <ubizjak@gmail.com> + + * c-c++-common/patchable_function_entry-decl.c (dg-final): Adapt + scan-assembler-times for alpha*-*-*. + * c-c++-common/patchable_function_entry-default.c (dg-final): Ditto. + * c-c++-common/patchable_function_entry-definition.c (dg-final): Ditto. + 2017-08-16 Thomas Koenig <tkoenig@gcc.gnu.org> PR fortran/81116 diff --git a/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c b/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c index 5c39a35..fb61ac3 100644 --- a/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c +++ b/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c @@ -1,6 +1,7 @@ /* { dg-do compile { target { ! nvptx*-*-* } } } */ /* { dg-options "-O2 -fpatchable-function-entry=3,1" } */ -/* { dg-final { scan-assembler-times "nop" 2 } } */ +/* { dg-final { scan-assembler-times "nop" 2 { target { ! alpha*-*-* } } } } */ +/* { dg-final { scan-assembler-times "bis" 2 { target alpha*-*-* } } } */ extern int a; diff --git a/gcc/testsuite/c-c++-common/patchable_function_entry-default.c b/gcc/testsuite/c-c++-common/patchable_function_entry-default.c index 48094f7..c18f9e6 100644 --- a/gcc/testsuite/c-c++-common/patchable_function_entry-default.c +++ b/gcc/testsuite/c-c++-common/patchable_function_entry-default.c @@ -1,6 +1,7 @@ /* { dg-do compile { target { ! nvptx*-*-* } } } */ /* { dg-options "-O2 -fpatchable-function-entry=3,1" } */ -/* { dg-final { scan-assembler-times "nop" 3 } } */ +/* { dg-final { scan-assembler-times "nop" 3 { target { ! alpha*-*-* } } } } */ +/* { dg-final { scan-assembler-times "bis" 3 { target alpha*-*-* } } } */ extern int a; diff --git a/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c b/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c index af8202f..54a57ba 100644 --- a/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c +++ b/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c @@ -1,6 +1,7 @@ /* { dg-do compile { target { ! nvptx*-*-* } } } */ /* { dg-options "-O2 -fpatchable-function-entry=3,1" } */ -/* { dg-final { scan-assembler-times "nop" 1 } } */ +/* { dg-final { scan-assembler-times "nop" 1 { target { ! alpha*-*-* } } } } */ +/* { dg-final { scan-assembler-times "bis" 1 { target alpha*-*-* } } } */ extern int a; |