OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 990519-1.c
1   typedef int   gboolean;
2
3   typedef struct{
4     gboolean names : 1;
5     gboolean types : 1;
6   } ParamOptions;
7
8   int p_param(ParamOptions* o){
9     return o->types && o->names;
10   }