OSDN Git Service

2004-05-20 H.J. Lu <hongjiu.lu@intel.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20020118-1.c
1 /* { dg-do run { target powerpc*-*-* } }*/
2
3 /* Test local alignment.  Test new target macro STARTING_FRAME_PHASE.  */
4 /* Origin: Aldy Hernandez <aldyh@redhat.com>.  */
5
6 int main ()
7 {       
8   int darisa[4] __attribute__((aligned(16))) ;
9   int *stephanie = (int *) darisa;
10
11   if ((unsigned long) stephanie % 16 != 0)
12     abort ();
13
14   return 0;
15 }