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
/
pr29797-1.c
blob
9bcc2a9c59bee8b5bccd4c830ac624bc7b71d343
1
extern
void
abort
(
void
);
2
3
unsigned int
bar
(
void
) {
return
32768
; }
4
5
int
main
()
6
{
7
unsigned int
nStyle
=
bar
();
8
if
(
nStyle
&
32768
)
9
nStyle
|=
65536
;
10
if
(
nStyle
!= (
32768
|
65536
))
11
abort
();
12
return
0
;
13
}
14