Commit 701ed479 by Uros Bizjak Committed by Uros Bizjak

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
parent f629051e
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
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment