• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 struct foo {
4   unsigned int I:1;
5   unsigned char J[1];
6   unsigned int K:1;
7  };
8 
test(struct foo * X)9 void test(struct foo *X) {}
10 
11