re PR testsuite/65506 (FAIL: gcc.dg/pr29215.c scan-tree-dump-not gimple "memcpy")

2015-03-23  Jakub Jelinek  <jakub@redhat.com>

	PR testsuite/65506
	* gcc.dg/pr29215.c: Dump and analyze ccp1 dump instead of
	gimple dump.

From-SVN: r221607
This commit is contained in:
Jakub Jelinek 2015-03-23 21:04:43 +01:00 committed by Jakub Jelinek
parent fc6a2c5d9a
commit d197a9fd10
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2015-03-23 Jakub Jelinek <jakub@redhat.com>
PR testsuite/65506
* gcc.dg/pr29215.c: Dump and analyze ccp1 dump instead of
gimple dump.
PR target/65523
* gcc.target/i386/pr65523.c: New test.

View File

@ -1,6 +1,6 @@
/* PR middle-end/29215 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-gimple" } */
/* { dg-options "-O2 -fdump-tree-ccp1" } */
char buf[5 * sizeof (int) + 1] __attribute__((aligned (__alignof__ (int))));
@ -29,5 +29,5 @@ main (void)
return 0;
}
/* { dg-final { scan-tree-dump-not "memcpy" "gimple" } } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
/* { dg-final { scan-tree-dump-not "memcpy" "ccp1" } } */
/* { dg-final { cleanup-tree-dump "ccp1" } } */