13 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null2 3struct _GIOChannel {4 int write_buf;5 char partial_write_buf[6];6 int d :1;7};8 9void g_io_channel_init (struct _GIOChannel *channel) {10 channel->partial_write_buf[0];11}12 13 1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null2 3struct _GIOChannel {4 int write_buf;5 char partial_write_buf[6];6 int d :1;7};8 9void g_io_channel_init (struct _GIOChannel *channel) {10 channel->partial_write_buf[0];11}12 13