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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fold-xor-2.c
blob
64a4e42e70673923707767e81b42610027e4b5b7
1
/* { dg-do compile } */
2
/* { dg-options "-fdump-tree-gimple" } */
3
int
f
(
int
a
,
int
b
) {
4
return
~(
a
^ -(
b
+
1
));
5
}
6
7
int
g
(
int
a
,
int
b
) {
8
return
b
^
a
;
9
}
10
11
unsigned int
h
(
unsigned int
a
,
unsigned int
b
) {
12
return
~(-(
b
+
1
) ^
a
);
13
}
14
15
/* { dg-final { scan-tree-dump-times "b \\^ a" 3 "gimple" } } */