aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/torture/pr37343.C
blob: c4614f39faa491c23bf99daa469376a3ea0550dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { 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]);
}