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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20050106-1.c
blob
e49732de40e77db72a44a9c1ff7a27cc69370d3f
1
/* PR tree-optimization/19283 */
2
3
void
abort
(
void
);
4
5
static
inline
unsigned short
6
foo
(
unsigned int
*
p
)
7
{
8
return
*
p
;
9
};
10
11
unsigned int
u
;
12
13
int
14
main
()
15
{
16
if
((
foo
(&
u
) &
0x8000
) !=
0
)
17
abort
();
18
return
0
;
19
}