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
/
vmx
/
gcc-bug-2.c
blob
f2f3c4cfe03ee13373852d30123ba575bf1256ba
1
/* { dg-do compile } */
2
#include <altivec.h>
3
typedef
struct
n_a
{
4
signed char
m1
;
5
vector
float
m2
;
6
}
n_a
;
7
8
typedef
struct
n_b
{
9
signed char
m1
;
10
struct
n_a m2
;
11
}
n_b
;
12
13
extern
void
f
(
n_b
*);
14
15
void
initn_b
()
16
{
17
n_b _i
;
18
f
(&
_i
);
19
}