Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
c-c++-common
/
vector-subscript-5.c
blob: 66ed87a4d0bfe41550b9d3f5f9341615609cf603 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
typedef
int
U __attribute__
((
vector_size
(
16
)));
int
foo
(
int
i
)
{
#if __SSE2__
register
#endif
U u
#if __SSE2__
asm
(
"xmm0"
)
#endif
;
return
u
[
i
];
}