1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00

Simplify testcase a bit

llvm-svn: 3150
This commit is contained in:
Chris Lattner 2002-07-30 06:07:16 +00:00
parent 0cd1a705a7
commit 199f82ce4b

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
}