1 /* { dg-do compile } */ 2 /* { dg-options "-O2 -mcpu=ev4" } */ 3 ntfs_getinfo(void * p)4 unsigned int ntfs_getinfo(void *p) 5 { 6 char bootsect[8]; 7 8 __builtin_memcpy(bootsect, p, sizeof bootsect); 9 return *(unsigned short *)(bootsect + 3); 10 } 11