Commit 3fa82826 by Kyrylo Tkachov Committed by Kyrylo Tkachov

unaligned-memcpy-2.c (dest): Initialize to ensure alignment.

gcc/testsuite/
2013-06-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

	* gcc.target/arm/unaligned-memcpy-2.c (dest): Initialize to
	ensure alignment.

From-SVN: r200148
parent fa86f4f9
2013-06-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* gcc.target/arm/unaligned-memcpy-2.c (dest): Initialize to
ensure alignment.
2013-06-16 Balaji V. Iyer <balaji.v.iyer@intel.com>
* c-c++-common/cilk-plus/AN/if_test.c (main2): Fixed a bug of accidentally
......
......@@ -4,7 +4,7 @@
#include <string.h>
char dest[16];
char dest[16] = { 0 };
void aligned_dest (char *src)
{
......
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