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
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20020530-1.c
blob
a6794892ec77cc464913ee4346da628b97d6f086
1
/* PR optimization/6822 */
2
3
extern
unsigned char
foo1
(
void
);
4
extern
unsigned short
foo2
(
void
);
5
6
int
bar1
(
void
)
7
{
8
unsigned char
q
=
foo1
();
9
return
(
q
<
0x80
) ?
64
:
0
;
10
}
11
12
int
bar2
(
void
)
13
{
14
unsigned short
h
=
foo2
();
15
return
(
h
<
0x8000
) ?
64
:
0
;
16
}