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