1/* PR tree-optimization/61684 */
2/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-O1" "-Os" } } */
3
4int a, c;
5static int *b = 0;
6short d;
7static short **e = 0;
8
9void
10foo ()
11{
12  for (; c < 1; c++)
13    ;
14  *e = &d;
15  a = d && (c && 1) & *b;
16}
17