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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr84711.c
blob
350f9010be7a4647c3107bc28b1d29f2f9d92456
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_int } */
3
/* { dg-additional-options "-O2 -Wno-psabi" } */
4
/* { dg-additional-options "-msse" { target i?86-*-* x86_64-*-* } } */
5
6
typedef
int
v4si
7
__attribute__
((
vector_size
(
16
)));
8
9
int
fn1
(
v4si p
)
10
{
11
return
p
[
0
];
12
}
13