diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5f11f19baf6..c15dda40f9c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2006-09-06 Richard Guenther + + * gcc.dg/pr27226.c: Remove testcase again. + 2006-09-05 Andrew Pinski PR tree-opt/28937 diff --git a/gcc/testsuite/gcc.dg/pr27226.c b/gcc/testsuite/gcc.dg/pr27226.c deleted file mode 100644 index df77a8c9665..00000000000 --- a/gcc/testsuite/gcc.dg/pr27226.c +++ /dev/null @@ -1,19 +0,0 @@ -/* { dg-do compile } */ -/* { dg-options "-O2" } */ - -char *strcpy (char *, const char *); - -extern void g (); - -f () -{ - struct { - int i; - char str[31]; - } s; - - strcpy (s.str, "text text text text text text text text"); - g (s.str); -} - -/* { dg-final { scan-assembler-not "memcpy" } } */