Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s -o -
      2 // PR4082
      3 union U {
      4   int I;
      5   double F;
      6 };
      7 
      8 union U arr[] = { { .I = 4 }, { .F = 123.} };
      9 union U *P = &arr[0];
     10 
     11 
     12