repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
pr64600_1.c
blob
6ba3fa296903dde0cf4d3a5ec91b05e586537fdd
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
}