URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr47365.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ struct A { int i; }; struct B { struct A a[2]; }; int i = 1; struct B b = { 0, 3 }; static void test () { if (b.a[0].i != i) { int t = b.a[0].i; b.a[0] = b.a[1]; b.a[1].i = t; } if (b.a[1].i == i) __builtin_abort (); if (b.a[0].i == 0) __builtin_abort (); } int main () { test (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log