aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr33373.c
blob: b11cfb4ebd83caffd9cf659d7e61769ff8bf9981 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
void DOSMEM_FillIsrTable(int*isr) {
    int i;

    for (i=0; i<256; i++)
        isr[i]=(((short)((i*4) & 0xFFFF)) | (0xf000 & 0xFFFF) << 16);
}
/* { dg-final { cleanup-tree-dump "vect" } } */