1 /* Origin: PR target/7434 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> */
2 
main(void)3 int main(void)
4 {
5   static const int align_g[] = { 1, 2, 4, 8, 16 };
6   char * buf;
7   int i = 0;
8   volatile long double val = 0;
9   val = *((long double *)(buf + align_g[i]));
10   return 0;
11 }
12