URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [20020118-1.c] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run { target powerpc*-*-* } }*/ /* 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