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
AVR: target/84211 - Add a post reload register optimization pass.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr101512.c
blob
a25da2aa0b52fa200d695e28bafc3d2303839075
1
/* { dg-do compile } */
2
/* { dg-additional-options "-w -Wno-psabi" } */
3
4
int
n
();
5
typedef
unsigned long
V
__attribute__
((
vector_size
(
64
)));
6
V
7
foo
(
int
i
,
V v
)
8
{
9
i
= ((
V
)(
V
){
n
()})[
n
()];
10
return
v
+
i
;
11
}