(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
lto/
pr54702_1.c
       1  int *b;
       2  void *d;
       3  int c;
       4  static int *f1 ();
       5  void f2 ()
       6  {
       7    int *a = f1 (0);
       8  }
       9  
      10  int *f1 (j)
      11  {
      12    b = malloc (0);
      13    d = *malloc;
      14    c = j;
      15  }
      16