modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/complex-2.c (about)

     1  /* PR 22103 */
     2  
     3  _Complex float f(void);
     4  void *a;
     5  
     6  _Complex float g(void)
     7  {
     8    _Complex float x = f();
     9    __imag__ x = 1.0;
    10    if (__imag__ x != 1.0)
    11      {
    12        a = &x;
    13      }
    14    return x;
    15  }
    16