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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
nand.c
blob
ebb6c39e3f1b525160c468ca4e03abad877b54c2
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-original" } */
3
4
unsigned
f
(
unsigned
x
,
unsigned
y
){
5
return
(
x
|
y
) & ~
x
;
6
}
7
unsigned
g
(
unsigned
x
,
unsigned
y
){
8
return
~
x
& (
y
|
x
);
9
}
10
11
/* { dg-final { scan-tree-dump-times "return ~x & y;" 2 "original" } } */