brintos

brintos / llvm-project-archived public Read only

0
0
Text · 154 B · 4296b91 Raw
12 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o - 2// PR40823union U {4  int I;5  double F;6};7 8union U arr[] = { { .I = 4 }, { .F = 123.} };9union U *P = &arr[0];10 11 12