repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920721-3.c
blob
61f605d0ad91109cf9d7f9d74936e12c9f2a2d7a
1
static
inline
fu
(
unsigned short
data
)
2
{
3
return
data
;
4
}
5
ru
(
i
)
6
{
7
if
(
fu
(
i
++)!=
5
)
abort
();
8
if
(
fu
(++
i
)!=
7
)
abort
();
9
}
10
static
inline
fs
(
signed short
data
)
11
{
12
return
data
;
13
}
14
rs
(
i
)
15
{
16
if
(
fs
(
i
++)!=
5
)
abort
();
17
if
(
fs
(++
i
)!=
7
)
abort
();
18
}
19
20
21
main
()
22
{
23
ru
(
5
);
24
rs
(
5
);
25
exit
(
0
);
26
}