URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [20020122-1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* Copyright (C) 2002 Free Software Foundation. by Hans-Peter Nilsson <hp@axis.com> */ /* { dg-do compile } */ typedef struct { unsigned short s; } t; struct u { t v; }; int foo (struct u *uu) { int i = ((unsigned int) ((uu->v) & 42)); /* { dg-error "invalid operands to binary" } */ return i; }
Go to most recent revision | Compare with Previous | Blame | View Log