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
/
pr97558.c
blob
fef96239aa0ef4e5f4b340c2002681ea9a73c69b
1
/* { dg-do compile } */
2
/* { dg-additional-options "-fno-tree-dce -Ofast" } */
3
4
long int
x1
;
5
int
fr
;
6
7
int
8
us
(
int
sk
,
int
jx
)
9
{
10
while
(
sk
<
1
)
11
{
12
jx
*=
2
;
13
fr
+=
x1
+
1
;
14
++
sk
;
15
}
16
17
return
jx
;
18
}