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
/
pr41987.c
blob
7bb49192c1d1a23592d0071a0cfae3fae5bd01d7
1
/* PR tree-optimization/41987 */
2
3
#define TESTIT(TYPE) do { \
4
_Complex TYPE ylm; \
5
TYPE nbond; \
6
ylm = 0; \
7
nbond = 0; \
8
ylm = ylm / nbond; \
9
} while (0)
10
11
void
qparm_colvar
(
void
)
12
{
13
TESTIT
(
float
);
14
TESTIT
(
double
);
15
TESTIT
(
long double
);
16
17
TESTIT
(
char
);
18
TESTIT
(
short
);
19
TESTIT
(
int
);
20
TESTIT
(
long
);
21
TESTIT
(
long long
);
22
}