diff options
author | Alexandre Oliva <oliva@adacore.com> | 2022-04-27 18:23:01 -0300 |
---|---|---|
committer | Alexandre Oliva <oliva@gnu.org> | 2022-05-02 21:39:50 -0300 |
commit | 404edfce683cb1801b052ee7c8d45d603c392e08 (patch) | |
tree | 0e1aadea05478dc84871205e3b6c11be4a319112 /gcc | |
parent | 6259d8aa73f6c4742c1aa22cccc325701307b3af (diff) | |
download | gcc-404edfce683cb1801b052ee7c8d45d603c392e08.zip gcc-404edfce683cb1801b052ee7c8d45d603c392e08.tar.gz gcc-404edfce683cb1801b052ee7c8d45d603c392e08.tar.bz2 |
testsuite: vect: update unaligned message
gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c covers ppc variants
that accept and reject misaligned accesses. The message that it
expects for rejection was removed in the gcc-11 development cycle by
commit r11-1969. The patch adjusted multiple tests to use the message
introduced in r11-1945, but missed this one.
for gcc/testsuite/ChangeLog
* gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c: Update
the expected message for the case in which unaligned accesses
are not allowed.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c b/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c index 72b4930..c57f065 100644 --- a/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c +++ b/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-vect-31a.c @@ -46,5 +46,5 @@ int main (void) return main1 (); } -/* { dg-final { scan-tree-dump-times "not vectorized: unsupported unaligned store" 1 "vect" { target { ! vect_hw_misalign } } } } */ +/* { dg-final { scan-tree-dump-times "unsupported unaligned access" 1 "vect" { target { ! vect_hw_misalign } } } } */ /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 0 "vect" { target { ! vect_hw_misalign } } } } */ |