1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
12 lines
154 B
C
12 lines
154 B
C
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
// PR4082
|
|
union U {
|
|
int I;
|
|
double F;
|
|
};
|
|
|
|
union U arr[] = { { .I = 4 }, { .F = 123.} };
|
|
union U *P = &arr[0];
|
|
|
|
|