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
/
torture
/
pr115901.c
blob
244af857d88755fd7f815b8a3b8862325424d48c
1
/* { dg-additional-options "-ftrivial-auto-var-init=zero" } */
2
3
int
p
;
4
void
g
(
long
);
5
#define vec16 __attribute__((vector_size(16)))
6
7
void
l
(
vec16
long
*);
8
void
h
()
9
{
10
long
inv1
;
11
vec16
long
inv
= {
p
,
inv1
};
12
g
(
p
);
13
l
(&
inv
);
14
}