libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr94703.c
blob8c863c0e20264ca7569911784e6d4dfcff971f84
1 /* { dg-do compile } */
2 /* { dg-require-effective-target non_strict_align } */
3 /* { dg-options "-O -fdump-tree-ssa" } */
5 unsigned int set_lowpart (unsigned int const *X)
7 unsigned int r = 0;
8 __builtin_memcpy(&r,X,sizeof (unsigned int) / 2);
9 return r;
12 /* { dg-final { scan-tree-dump "No longer having address taken: r" "ssa" } } */