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
/
vect
/
pr114231.c
blob
5e3a81039188fd83742f3b19af03f690af71dcdd
1
/* { dg-do compile } */
2
3
void
f
(
long
*);
4
int
ff
[
2
];
5
void
f2
(
long
,
long
,
unsigned long
);
6
void
k
(
unsigned long
x
,
unsigned long
y
)
7
{
8
long
t
=
x
>>
ff
[
0
];
9
long
t1
=
ff
[
1
];
10
unsigned long
t2
=
y
>>
ff
[
0
];
11
f2
(
t1
,
t
+
t2
,
t2
);
12
}