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
/
pr34856.c
blob
a2f43690990d875c2fe85b99d3dd761eaa098fc3
1
#undef __vector
2
#define __vector __attribute__((vector_size(16) ))
3
typedef
__vector
signed char
qword
;
4
typedef
__vector
unsigned int
VU32
;
5
extern
short
g
[
192
+
16
];
6
void
f
(
qword
);
7
void
f1
(
unsigned
ctr
)
8
{
9
VU32 pin
;
10
pin
= (
VU32
){(
__SIZE_TYPE__
)&
g
[
16
]};
11
do
{
12
f
((
qword
)
pin
);
13
ctr
--;
14
}
15
while
(
ctr
);
16
}
17