(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr32191.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-std=c99" } */
       3  
       4  typedef _Complex float __attribute__((mode(TC))) _Complex128;
       5  
       6  _Complex128 foo (_Complex128 x, _Complex128 y)
       7  {
       8    return x * y;
       9  }