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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gimplefe-7.c
blob
61255412ab5143b699a23ff2c9d1c3f7bd24fa3f
1
/* { dg-do compile } */
2
/* { dg-options "-fgimple" } */
3
4
void
__GIMPLE
()
foo
()
5
{
6
int
a
;
7
8
bb_2
:
9
if
(
a
>
4
)
10
goto
bb_3
;
11
else
12
goto
bb_4
;
13
14
bb_3
:
15
a_2
=
10
;
16
goto
bb_5
;
17
18
bb_4
:
19
a_3
=
20
;
20
21
bb_5
:
22
a_1
=
__PHI
(
bb_3
:
a_2
,
bb_4
:
a_3
);
23
a_4
=
a_1
+
4
;
24
25
return
;
26
}
27