pr27226.c: Remove testcase again.

2006-09-06  Richard Guenther  <rguenther@suse.de>

        * gcc.dg/pr27226.c: Remove testcase again.

From-SVN: r116722
This commit is contained in:
Richard Guenther 2006-09-06 13:47:42 +00:00 committed by Richard Biener
parent 7034d31bda
commit 16ceb301d3
2 changed files with 4 additions and 19 deletions

View file

@ -1,3 +1,7 @@
2006-09-06 Richard Guenther <rguenther@suse.de>
* gcc.dg/pr27226.c: Remove testcase again.
2006-09-05 Andrew Pinski <pinskia@physics.uc.edu>
PR tree-opt/28937

View file

@ -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" } } */