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
/
pr97238.c
blob
746e93a9750233a5295ebe62d3f4709cbd19134c
1
/* { dg-do compile } */
2
/* { dg-options "-O -Wno-psabi -w" } */
3
4
typedef
int
__attribute__
((
__vector_size__
(
8
)))
V
;
5
int
b
,
c
,
e
;
6
V d
;
7
8
V
9
foo
(
void
)
10
{
11
return
(
b
||
e
) |
c
>
d
| ((
b
||
e
) |
c
>
d
);
12
}