blob: 18b656ffb2d2efa380c4c13e923833abe893ea3b [file] [log] [blame]
/* { dg-do compile } */
_Bool a;
struct s { int t; } c, d;
unsigned e, f;
unsigned transferValues(struct s *End) {
unsigned RegIdx = *(a ? &e : &f);
*End = *(a ? &c : &d);
return RegIdx;
}