[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / 2003-11-19-BitFieldArray.c
blob841156306193e1a4647ac1ce0f1170ea9a9db884
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 struct _GIOChannel {
4 int write_buf;
5 char partial_write_buf[6];
6 int d :1;
7 };
9 void g_io_channel_init (struct _GIOChannel *channel) {
10 channel->partial_write_buf[0];