blob: 250268a3b859de606db0fbe6e3ee2ec3491e3da5 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
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