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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr94211.c
blob
3e160e457fe43bc8d9973668cc022071a615782b
1
/* PR tree-optimization/94211 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fcompare-debug" } */
4
5
long
6
foo
(
long
a
,
long
b
)
7
{
8
if
(
__builtin_expect
(
b
==
1
,
1
))
9
return
a
;
10
int
e
=
a
+
1
;
11
return
a
/
b
;
12
}