Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr101512.c
blob: a25da2aa0b52fa200d695e28bafc3d2303839075 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-additional-options "-w -Wno-psabi" } */
int
n
();
typedef
unsigned
long
V __attribute__
((
vector_size
(
64
)));
V
foo
(
int
i
,
V v
)
{
i
=
((
V
)(
V
){
n
()})[
n
()];
return
v
+
i
;
}