blob: 420926d7548b4e8cad4315993d60b9b2896cdc8f [file] [log] [blame]
/* This program tests a data flow bug that would cause constant propagation
to propagate constants through function calls. */
foo (int *p)
{
*p = 10;
}
main()
{
int *ptr = alloca (sizeof (int));
*ptr = 5;
foo (ptr);
if (*ptr == 5)
abort ();
exit (0);
}