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
/
compile
/
991026-1.c
blob
191742112bda4fc3f131e6c3565d3faf82c49192
1
void
something_f
(
float
);
2
3
int
foo
(
void
)
4
{
5
union
6
{
7
float
f
;
8
double
d
;
9
}
u
, *
pu
= &
u
;
10
11
u
.
f
=
1.0
;
12
something_f
(
u
.
f
);
13
}