diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a9a31200b03..cb5afed9926 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-03-11 Uros Bizjak + + PR target/52530 + * gcc.dg/torture/pr52530.c: New test. + 2012-03-11 Oleg Endo PR target/51244 diff --git a/gcc/testsuite/gcc.dg/torture/pr52530.c b/gcc/testsuite/gcc.dg/torture/pr52530.c new file mode 100644 index 00000000000..d32ea828cb5 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr52530.c @@ -0,0 +1,30 @@ +/* { dg-do run } */ + +extern void abort (void); + +struct foo +{ + int *f; + int i; +}; + +int baz; + +void __attribute__ ((noinline)) +bar (struct foo x) +{ + *(x.f) = x.i; +} + +int +main () +{ + struct foo x = { &baz, 0xdeadbeef }; + + bar (x); + + if (baz != 0xdeadbeef) + abort (); + + return 0; +}