hanchenye-llvm-project/llvm/test/Regression/CFrontend/2002-07-30-SubregSetAsserti...

14 lines
145 B
C
Raw Normal View History

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;
}