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
/
pr108463.c
blob
6e94e7daed9867f4cb605c3cd329c54b937c3f15
1
/* PR rtl-optimization/108463 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fsched2-use-superblocks -fcompare-debug -Wno-psabi" } */
4
5
typedef
int
__attribute__
((
__vector_size__
(
32
)))
V
;
6
int
a
;
7
8
void
9
foo
(
V v
)
10
{
11
a
--;
12
v
= (
V
)
v
;
13
}