Simplify testcase a bit

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3150 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-07-30 06:07:16 +00:00
parent a7e2dd4847
commit f40e0c4472

View File

@ -1,13 +1,9 @@
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;
union X void foo() {
union X A;
A.B = (void*)123
}