URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [stackalign/] [global-1.c] - Rev 424
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ #include "check.h" #ifndef ALIGNMENT #define ALIGNMENT 64 #endif typedef int aligned __attribute__((aligned(ALIGNMENT))); int global; void foo (void) { aligned i; if (check_int (&i, __alignof__(i)) != i) abort (); } int main() { foo (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log