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
Merge branches/gcc-4_8-branch rev 208968.
[official-gcc.git]
/
gcc-4_8-branch
/
gcc
/
testsuite
/
c-c++-common
/
pr59037.c
blob
fae13c2fa94d38b357efad6649a603ab95d2ee16
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
typedef
int
v4si
__attribute__
((
vector_size
(
16
)));
5
6
int
7
main
(
int
argc
,
char
**
argv
)
8
{
9
v4si x
= {
0
,
1
,
2
,
3
};
10
x
= (
v4si
) {(
x
)[
3
], (
x
)[
2
], (
x
)[
1
], (
x
)[
0
]};
11
return
x
[
4
];
12
}