1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mtune=xscale" } */
3
4 typedef unsigned int speed_t;
5 typedef unsigned int tcflag_t;
6
7 struct termios {
8 tcflag_t c_cflag;
9 };
10
11 speed_t
12 cfgetospeed (const struct termios *tp)
13 {
14 return tp->c_cflag & 010017;
15 }