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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-lim-9.c
blob
a65656f49eef0540fe19f089cbfc624362ae6e23
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
+
n
;
13
else
14
x
=
m
-
n
;
15
bar
(
x
);
16
}
17
}
18
19
/* { dg-final { scan-tree-dump-times "Moving PHI node" 1 "lim2" } } */