https://gcc.gnu.org/bugzilla/show_bug.cgi?id=126571

--- Comment #2 from Drea Pinski <pinskia at gcc dot gnu.org> ---
Address space testcase:
```
typedef __seg_fs  int *type1;

int
f (int c, type1 fp, int *q)
{
  int r;
  if (c)
    r = *fp;
  else
    r = *q;
  return r + 1;
}
```

Reply via email to