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
/
pr106250.c
blob
7f25f55186918c4d062d11ce3f49c3def7fda81c
1
/* { dg-do compile } */
2
3
int
4
foo
(
unsigned long int
x
,
int
y
,
int
z
)
5
{
6
int
ret
=
0
;
7
8
while
(
y
<
1
)
9
{
10
x
*=
2
;
11
ret
=
x
==
z
;
12
z
=
y
;
13
++
y
;
14
}
15
16
return
ret
;
17
}