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
/
3b-14.c
blob
02b2d901ebc6622d1087fdba78ab24b7b342b07a
1
#include
"harness.h"
2
3
static
vector
bool char
x
(
void
);
4
static void
g
(
void
);
5
6
static
vector
bool char
7
f
(
void
)
8
{
9
vector
bool char
a
=
x
();
10
g
();
11
return
a
;
12
}
13
14
static
vector
bool char
15
x
(
void
)
16
{
17
static
vector
bool char
zero
;
18
return
zero
;
19
}
20
21
static void
g
()
22
{
23
}
24
25
static void
test
()
26
{
27
static
vector
bool char
zero
;
28
check
(
vec_all_eq
(
f
(),
zero
),
"f"
);
29
}