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
/
ipa
/
ipa-icf-38a.c
blob
414a7c455e4518183cffbc7c479d6bab05dcd125
1
/* { dg-skip-if "" { *-*-* } } */
2
3
typedef
int
v4si
__attribute__
((
vector_size
(
16
)));
4
5
__attribute__
((
noinline
))
6
int
bar
(
void
)
7
{
8
v4si a
= {
1
,
2
,
3
,
4
};
9
v4si b
= {
3
,
2
,
1
,
4
};
10
v4si c
;
11
12
return
54
;
13
}
14