URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr41935.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/41935 */ /* { dg-do run } */ /* { dg-options "-O2" } */ extern void abort (void); struct A { int a; int b[10]; }; int foo (struct A *p) { return __builtin_offsetof (struct A, b[p->a]); } int main () { struct A a; a.a = 7; if (foo (&a) != 7 * sizeof (int) + __builtin_offsetof (struct A, b)) abort (); a.a = 2; if (foo (&a) != 2 * sizeof (int) + __builtin_offsetof (struct A, b)) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log