]> gcc.gnu.org Git - gcc.git/commit
testsuite: Fix up scan-tree-dump-times regexps for 64-bit targets
authorJakub Jelinek <jakub@redhat.com>
Wed, 11 Nov 2020 15:11:17 +0000 (16:11 +0100)
committerJakub Jelinek <jakub@redhat.com>
Wed, 11 Nov 2020 15:11:17 +0000 (16:11 +0100)
commit364ad1d44b43a22025814f7eb664173ce35b5878
treed38a0e159c00015c0b582ee916d0727307b4fa0a
parentce2d0ce29312a50296919565818edbb98543ae18
testsuite: Fix up scan-tree-dump-times regexps for 64-bit targets

The added (?:_ull) match on 32-bit targets, but are equivalent to just
adding _ull into the strings, i.e. require the _ull substrings, while
the intent is that they are optional, so we should use (?:_ull)? instead.

2020-11-11  Jakub Jelinek  <jakub@redhat.com>

* gfortran.dg/gomp/workshare-reduction-3.f90: Use (?:_ull)? instead
of (?:_ull) in the scan-tree-dump-times directives.
* gfortran.dg/gomp/workshare-reduction-26.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-27.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-28.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-36.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-37.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-38.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-39.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-40.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-41.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-42.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-43.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-44.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-45.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-46.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-47.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-56.f90: Likewise.
* gfortran.dg/gomp/workshare-reduction-57.f90: Likewise.
18 files changed:
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-26.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-27.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-28.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-3.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-36.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-37.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-38.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-39.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-40.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-41.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-42.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-43.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-44.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-45.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-46.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-47.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-56.f90
gcc/testsuite/gfortran.dg/gomp/workshare-reduction-57.f90
This page took 0.073227 seconds and 6 git commands to generate.