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
/
torture
/
pr79186.c
blob
cefbe3968004110863d110961847f13440a32a30
1
/* { dg-do run } */
2
3
int
a
,
b
;
4
unsigned char
c
,
d
,
e
;
5
6
int
main
()
7
{
8
if
(
b
|| !
a
)
9
{
10
c
=
a
;
11
if
(!
c
&& !
a
)
12
d
=
0
;
13
e
= -
a
;
14
}
15
return
0
;
16
}