comparison gcc/testsuite/gcc.dg/20031218-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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
13 inline void foo (struct S * mx) {
14 mx->n = 1;
15 }
16
17 void bar () {
18 foo (0);
19 }