1  /* PR middle-end/86123 */
       2  
       3  int
       4  foo (_Complex unsigned x, _Complex unsigned y)
       5  {
       6    _Complex unsigned t1 = x / y;
       7    int t2 = (t1 != 0);
       8    return t2;
       9  }
      10  
      11  int
      12  bar (_Complex unsigned x, _Complex unsigned y)
      13  {
      14    _Complex unsigned t1 = x / y;
      15    int t2 = (t1 == 0);
      16    return t2;
      17  }