URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr37343.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */
typedef enum RW { rwBitmapGrey, rwBitmapGrey16 } RW;
void FindDepth(RW);
void ParseDumpBitmap(RW kind, int maxfiles)
{
static const RW normalTypes[] = { };
const RW *bitmapTypes;
int i;
switch (kind) {
case rwBitmapGrey:
case rwBitmapGrey16:
bitmapTypes = &kind;
break;
default:
bitmapTypes = normalTypes;
}
for (i = 0; i < maxfiles; i++)
FindDepth(bitmapTypes[i]);
}
Go to most recent revision | Compare with Previous | Blame | View Log