repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix unused warnings.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20020225-2.c
blob
5c91596096bb481ade1a54af210d06faee5587b8
1
static int
2
test
(
int
x
)
3
{
4
union
5
{
6
int
i
;
7
double
d
;
8
}
a
;
9
a
.
d
=
0
;
10
a
.
i
=
1
;
11
return
x
>>
a
.
i
;
12
}
13
14
int
main
(
void
)
15
{
16
if
(
test
(
5
) !=
2
)
17
abort
();
18
exit
(
0
);
19
}