1 /* { dg-do compile } */ 2 3 /* We used to ICE with type-checking enabled. */ 4 bfstages(int M,float * Utbl,int Ustride)5 unsigned int bfstages(int M, float *Utbl, int Ustride) 6 { 7 return ((unsigned int) 1 << M) * Ustride; 8 } 9