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
/
tree-ssa
/
pr73450.c
blob
7dd44dbbaf5babbf0e8c31a29251083c8886c53f
1
/* { dg-do run } */
2
/* { dg-options "-O3" } */
3
4
int
a
;
5
char
b
;
6
int
main
() {
7
char
c
=
0
;
8
for
(;
c
!=
3
;
c
=
c
+
7
) {
9
a
=
b
&
a
;
10
if
(
a
)
11
break
;
12
}
13
return
0
;
14
}