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
/
pr69156.c
blob
1addfa3f6aaedb40d168f3d465d8db4d5f041e38
1
/* PR tree-optimization/69156 */
2
/* { dg-do compile } */
3
/* { dg-options "-O1 -fno-tree-ccp" } */
4
5
_Bool
6
foo
()
7
{
8
_Bool
(*
f
) () =
__builtin_abs
;
/* { dg-warning "initialization of '_Bool \\(\\*\\)\\(\\)' from incompatible pointer type" } */
9
return
f
(
0
);
10
}