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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-lim-8.c
blob
9256b39fb449e7fb01e9bf49c3d74bea221a6ea6
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-lim2-details" } */
3
4
void
bar
(
int
);
5
void
foo
(
int
n
,
int
m
)
6
{
7
unsigned
i
;
8
for
(
i
=
0
;
i
<
n
; ++
i
)
9
{
10
int
x
;
11
if
(
m
<
0
)
12
x
=
1
;
13
else
14
x
=
m
;
15
bar
(
x
);
16
}
17
}
18
19
/* { dg-final { scan-tree-dump-times "Moving PHI node" 1 "lim2" } } */