llvm-6502/test/CFrontend/2003-11-19-BitFieldArray.c
Chris Lattner 6ce829df84 Testcase for PR113
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10101 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-20 00:32:57 +00:00

11 lines
174 B
C

struct _GIOChannel {
int write_buf;
char partial_write_buf[6];
int d :1;
};
void g_io_channel_init (struct _GIOChannel *channel) {
channel->partial_write_buf[0];
}