brintos

brintos / llvm-project-archived public Read only

0
0
Text · 157 B · 0f45fc9 Raw
11 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3struct foo {4  unsigned int I:1;5  unsigned char J[1];6  unsigned int K:1;7 };8 9void test(struct foo *X) {}10 11