URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [nest-align-1.c] - Rev 688
Compare with Previous | Blame | View Log
/* Test for alignment handling when a variable is accessed by nested function. */ /* Origin: Joey Ye <joey.ye@intel.com> */ #include <stddef.h> typedef int aligned __attribute__((aligned)); extern void abort (void); void check (int *i) { *i = 20; if ((((ptrdiff_t) i) & (__alignof__(aligned) - 1)) != 0) abort (); } void foo (void) { aligned jj; void bar () { jj = -20; } jj = 0; bar (); if (jj != -20) abort (); check (&jj); if (jj != 20) abort (); } int main() { foo (); return 0; }