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
/
pr31959.c
blob
f8090f45cc025e04194662576d31881d9a807338
1
/* PR middle-end/31959 */
2
/* { dg-do compile } */
3
/* { dg-options "-O0 -fguess-branch-probability" } */
4
5
struct
A
{
int
i
; };
6
7
static
inline
struct
A
*
8
bar
(
struct
A
*
x
)
9
{
10
return
x
;
11
}
12
13
void
*
14
foo
(
struct
A
*
x
,
int
y
)
15
{
16
void
*
p
= (
void
*)
0
;
17
if
(
__builtin_expect
(
y
>=
6
,
0
))
18
p
=
bar
(
x
);
19
return
p
;
20
}