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
/
pr107195-2.c
blob
d447c78bdd300c97018ffb6b2adda5df39390743
1
// { dg-do run }
2
// { dg-options "-O1" }
3
4
int
a
,
b
;
5
int
main
() {
6
int
c
=
0
;
7
long
d
;
8
for
(;
b
<
1
;
b
++) {
9
(
c
&&
d
) &
3
||
a
;
10
d
=
c
;
11
c
= -
1
;
12
if
(
d
)
13
__builtin_abort
();
14
}
15
return
0
;
16
}