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/] [pr33724.c] - Rev 404
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* We ICEd with type-checking enabled. */ struct xt_entry_target { char name[1]; }; struct ipt_entry { unsigned char elems[1]; }; void match_different(const unsigned char *); int dump_entry(struct xt_entry_target *t) { return __builtin_strcmp (t->name, ""); } void is_same(const struct ipt_entry *a) { match_different(a->elems); }
Go to most recent revision | Compare with Previous | Blame | View Log