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
/
reassoc-3.c
blob
178e6a4482266df1f3fb42a048b6a6b7c903a142
1
/* { dg-options "" } */
2
int
main
(
int
a
,
int
b
,
int
c
,
int
d
)
3
{
4
int
e
= (
a
& ~
b
) & (~
c
&
d
);
5
int
f
= (~
c
&
a
) & (
b
& ~
d
);
6
return
(
e
&
f
);
7
}