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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
981001-1.c
blob
d7cf0dc64b0d7acc6c378987ed486af8a686ae9c
1
unsigned short
code
=
0x0000
;
2
unsigned short
low
=
0x4000
;
3
unsigned short
high
=
0xb000
;
4
5
int
main
(
void
)
6
{
7
if
(
8
(
high
&
0x8000
) != (
low
&
0x8000
)
9
&& (
low
&
0x4000
) ==
0x4000
10
&& (
high
&
0x4000
) ==
0
11
)
12
{
13
code
^=
0x4000
;
14
low
|=
0x4000
;
15
}
16
17
exit
(
0
);
18
}