aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr46878-1.c
blob: f5b42de118be5c237fd0827470100a52b564d399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* PR rtl-optimization/46878 */
/* Make sure this doesn't ICE.  */
/* { dg-do compile } */
/* { dg-options "-O2" } */

struct baz
{
  int *newp;
};

int
get_ice (int *op, struct baz *ret)
{
  int *tmpp;
  int c;
  c = (__foo () != 1);
  if (__bar ())
    {
      return (1);
    }
  if (c)
    tmpp = op;
  if (tmpp)
    {
    }
  else if (c)
    {
      ret->newp = tmpp;
    }
}