1/* { dg-do compile { target { ! { ia32 } } } } */
2
3typedef int DItype __attribute__ ((mode (DI)));
4typedef unsigned int UDItype __attribute__ ((mode (DI)));
5typedef int TItype __attribute__ ((mode (TI)));
6
7__floattisf (TItype u)
8{
9  DItype hi = u >> (8 * 8);
10  UDItype count, shift;
11  hi = u >> shift;
12}
13