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
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr15825-1.c
blob
a4b46d44404da8061147956f11aa1d63c1e1c012
1
/* PR middle-end/15825 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
unsigned int
foo
(
long long
high
,
int
unsigned_p
)
6
{
7
int
i
;
8
if
(
high
<
0
)
9
if
(!
unsigned_p
)
10
{
11
i
=
1
;
12
goto
t
;
13
}
14
i
=
0
;
15
t
:
16
return
i
;
17
}
18