diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ef4467177063..9b17200f3ae2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-08-23 Richard Guenther + + PR tree-optimization/32328 + * testsuite/gcc.dg/pr32328.c: New testcase. + 2007-08-23 Rask Ingemann Lambertsen * gcc.c-torture/execute/simd-4.x: Only run when stdint.h types are diff --git a/gcc/testsuite/gcc.dg/pr32328.c b/gcc/testsuite/gcc.dg/pr32328.c new file mode 100644 index 000000000000..69b08fc4fdf1 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr32328.c @@ -0,0 +1,17 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -fdump-tree-optimized" } */ + +struct barstruct { char const* some_string; }; + +void changethepointer(struct barstruct**); + +void baz() +{ + struct barstruct bar1; + struct barstruct* barptr = &bar1; + changethepointer(&barptr); + barptr->some_string = "Everything OK"; +} + +/* { dg-final { scan-tree-dump "Everything OK" "optimized" } } */ +/* { dg-final { cleanup-tree-dump "optimized" } } */