URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [20020118-1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run { target powerpc*-*-* } }*/ /* VxWorks only guarantees 64 bits of alignment (STACK_BOUNDARY == 64). */ /* { dg-skip-if "" { "powerpc*-*-vxworks*" } { "*" } { "" } } */ /* Test local alignment. Test new target macro STARTING_FRAME_PHASE. */ /* Origin: Aldy Hernandez <aldyh@redhat.com>. */ extern void abort(void); int main () { int darisa[4] __attribute__((aligned(16))) ; int *stephanie = (int *) darisa; if ((unsigned long) stephanie % 16 != 0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log