On Wed, May 13, 2020 at 02:00:11PM +0200, Christophe Lyon via Gcc-patches wrote: > > > 2020-05-11 Bin Cheng <bin.ch...@linux.alibaba.com> > > > > > > PR tree-optimization/94969 > > > * gcc.dg/tree-ssa/pr94969.c: New test. > > The new test fails on arm and aarch64 and probably everywhere: > gcc.dg/tree-ssa/pr94969.c: dump file does not exist > UNRESOLVED: gcc.dg/tree-ssa/pr94969.c scan-tree-dump-not Loop 1 > distributed: split to 3 loops "ldist" > > Can you fix this?
Seems a mere swapping of the scan-tree-dump-not args, I've verified the test passes after this change and fails with older trunk, committed to trunk as obvious. 2020-05-13 Jakub Jelinek <ja...@redhat.com> PR testsuite/95110 * gcc.dg/tree-ssa/pr94969.c: Swap scan-tree-dump-not arguments. --- gcc/testsuite/gcc.dg/tree-ssa/pr94969.c.jj 2020-05-13 09:24:36.959012780 +0200 +++ gcc/testsuite/gcc.dg/tree-ssa/pr94969.c 2020-05-13 19:13:53.664499322 +0200 @@ -25,4 +25,4 @@ int main() __builtin_abort (); } -/* { dg-final { scan-tree-dump-not "ldist" "Loop 1 distributed: split to 3 loops"} } */ +/* { dg-final { scan-tree-dump-not "Loop 1 distributed: split to 3 loops" "ldist" } } */ Jakub