gcc/testsuite/ChangeLog:
* gcc.dg/tree-ssa/ssa-dse-30.c: Correct test to look for memmove
that bcopy is expected to be transformed to.
From-SVN: r250209
+2017-07-14 Martin Sebor <msebor@redhat.com>
+
+ * gcc.dg/tree-ssa/ssa-dse-30.c: Correct test to look for memmove
+ that bcopy is expected to be transformed to.
+
2017-07-14 David Malcolm <dmalcolm@redhat.com>
* g++.dg/cpp0x/missing-initializer_list-include.C: New test case.
{
char d[33];
- /* Bcopy is transformed into memcpy and those calls are expanded
+ /* Bcopy is transformed into memmove and those calls are expanded
inline in EVRP, before DSE runs, so this test doesn't actually
verify that DSE does its job. */
__builtin_bcopy (s, d, sizeof d);
}
/* { dg-final { scan-tree-dump-times "builtin_memset" 1 "dse1" } } */
-/* { dg-final { scan-tree-dump-not "builtin_(bcopy|bzero|memcpy)" "dse1" } } */
+/* { dg-final { scan-tree-dump-not "builtin_(bcopy|bzero|memcpy|memmove)" "dse1" } } */