1  /* PR target/53187 */
       2  
       3  void bar (int);
       4  
       5  void
       6  foo (int x, double y, double z)
       7  {
       8    _Bool t = z >= y;
       9    if (!t || x)
      10      bar (t ? 1 : 16);
      11  }
       1  /* PR target/53187 */
       2  
       3  void bar (int);
       4  
       5  void
       6  foo (int x, double y, double z)
       7  {
       8    _Bool t = z >= y;
       9    if (!t || x)
      10      bar (t ? 1 : 16);
      11  }