1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Testcase for PR113

llvm-svn: 10101
This commit is contained in:
Chris Lattner 2003-11-20 00:32:57 +00:00
parent 5ac68ed1bf
commit ca034cad65

View File

@ -0,0 +1,10 @@
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];
}