visibility-11.c: Enlarge test array to 1024 bytes to avoid memcpy optimization.

* gcc.dg/visibility-11.c: Enlarge test array to 1024 bytes to
	avoid memcpy optimization.

From-SVN: r115705
This commit is contained in:
Uros Bizjak 2006-07-24 07:43:14 +02:00 committed by Uros Bizjak
parent f629051ee6
commit 701ed479bf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-07-24 Uros Bizjak <uros@kss-loka.si>
* gcc.dg/visibility-11.c: Enlarge test array to 1024 bytes to
avoid memcpy optimization.
2006-07-24 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/25289

View File

@ -12,7 +12,7 @@
extern void* memcpy (void *, const void *, __SIZE_TYPE__);
#pragma GCC visibility pop
struct a { int a[10]; };
struct a { int a[1024]; };
extern void *bar (struct a *, struct a *, int);