aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr22269.c
blob: bfcf209266ca5b301715e282e486f4b44a963b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* We used to ICE in tree-ssa-reassoc because we did look at the correct operand to
   see if it was a SSA_NAME.  */
int printf(const char*, ...);
int main(int argv, char*argc) {

    int d1;
    int d2;
    int s1, s2;
    int b;
    ((d1)&=(int)0x0000ffffL, (d1)|=((int)(short)(0x344))<<16);
    ((d1)&=(int)0xffff0000UL, (d1)|=(int)(unsigned short)(0x4567));
    ((d2)&=(int)0x0000ffffL, (d2)|=((int)(short)(0))<<16);
    ((d2)&=(int)0xffff0000UL, (d2)|=(int)(unsigned short)(0x3b9a));
    printf(" dividend >>: %ld\n", d1);
    printf(" divisor  >>: %ld\n", d2);
}