URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr33655.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do compile } */ typedef struct { unsigned long attr; int chars[2]; } cchar_t; typedef struct _win_st { cchar_t _bkgrnd; } WINDOW; void render_char(WINDOW *win, cchar_t ch) { if ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0') win->_bkgrnd = ch; }