URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [stackalign/] [pr16660-3.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do run } */ #include "check.h" typedef __SIZE_TYPE__ size_t; #define ALIGNMENT 256 int main(void) { int a[ALIGNMENT/sizeof(int)] __attribute__((aligned(ALIGNMENT))); check (&a, ALIGNMENT); int b[ALIGNMENT/sizeof(int)] __attribute__((aligned(ALIGNMENT))); check (&b, ALIGNMENT); return 0; }