(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr50092.c
       1  /* PR target/50092 */
       2  /* { dg-do compile { target lp64 } } */
       3  
       4  volatile int v;
       5  
       6  void bar (long double);
       7  void baz (_Complex long double *);
       8  
       9  void
      10  foo (void)
      11  {
      12    _Complex long double w[100000000];
      13    bar ((long double) v / 2147483648.0);
      14    baz (w);
      15  }