brintos

brintos / llvm-project-archived public Read only

0
0
Text · 172 B · 9b8b5a2 Raw
12 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3 4typedef struct {5  int op;6} event_t;7 8event_t test(int X) {9  event_t foo = { 1 }, bar = { 2 };10  return X ? foo : bar;11}12