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
Handle peeling for alignment with masking
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
binop-notand5a.c
blob
378752b06df605737d86ae3d3eca5e2076303221
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-optimized" } */
3
4
int
5
foo
(
long
a
,
unsigned long
b
)
6
{
7
return
(
a
& (
a
==
0
)) | (
b
& !
b
);
8
}
9
10
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */