1 /* Orgin: v.haisman@sh.cvut.cz
2    Reduced by: Wolfgang Bangerth <bangerth@dealii.org>
3    PR debug/12923  ICE in gen_subprogram_die with -O1 -g
4    The problem was that this just to ICE with -O1  -g.  */
5 
6 /* { dg-do compile } */
7 /* { dg-options "-O -g" } */
8 
9 struct S {
10   unsigned n;
11 };
12 
foo(struct S * mx)13 inline void foo (struct S * mx) {
14   mx->n = 1;
15 }
16 
bar()17 void bar () {
18   foo (0);
19 }
20