1  /* { dg-do compile { target int128 } } */
       2  /* { dg-options "-Og" } */
       3  
       4  __int128 i;
       5  
       6  void bar (int);
       7  
       8  void
       9  foo (int a, char b, _Complex unsigned char c)
      10  {
      11    __int128 j = i * i;
      12    c -= 1;
      13    bar (j);
      14    bar (__imag__ c);
      15  }