/* * Structure members should get the address * space of their pointer. */#define __user __attribute__((address_space(1)))structhello{inta;};externinttest(int__user*ip);staticintbroken(structhello__user*sp){returntest(&sp->a);}/* * check-name: Address space of a struct member */