aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2002-07-30-SubregSetAssertion.c
blob: 5316e74876b9d9ccb49749b6e0ace587a08c4247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

union X {
  //char C;
  //int A;
  void *B;
};

union X foo(union X A) {
	//A.C = 123;
	//A.A = 39249;
	A.B = (void*)123040123321;
	return A;
}