This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020118-1.c
blob393f3c2aa5b5215b41a39581826716c1ec9653fd
1 /* { dg-do run { target powerpc*-*-* } }*/
3 /* Test local alignment. Test new target macro STARTING_FRAME_PHASE. */
4 /* Origin: Aldy Hernandez <aldyh@redhat.com>. */
6 extern void abort(void);
8 int main ()
9 {
10 int darisa[4] __attribute__((aligned(16))) ;
11 int *stephanie = (int *) darisa;
13 if ((unsigned long) stephanie % 16 != 0)
14 abort ();
16 return 0;