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