(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ipa/
ipa-sra-3.C
/* { dg-options "-O2 -fipa-sra -fno-inline -fno-ipa-cp"  } */


char *a() __attribute__((__malloc__));
static char *b() {
  char *c = a();
  return c;
}
int d() { b(); return 4; }