OSDN Git Service

2012-01-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr43213.c
1 /* { dg-do compile } */
2
3 struct S {
4   int i;
5 };
6
7 struct S f(int i)
8 {
9   return *(struct S *)&i;
10 }
11
12 /* { dg-final { scan-assembler-not "memmove" } } */