blob: 90ecbb88dc288bb29a98d241c03705139cfcf0cb [file] [log] [blame]
/* MIN_EXPR/MAX_EXPR caused an ICE in VRP. */
int *f(int *a, int *b)
{
*a = 1;
*b = 2;
int *c = a < b ? a : b;
if (c)
return c;
else
return a;
}