aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authordvyukov <dvyukov@138bc75d-0d04-0410-961f-82ee72b054a4>2011-12-14 09:28:05 +0000
committerdvyukov <dvyukov@138bc75d-0d04-0410-961f-82ee72b054a4>2011-12-14 09:28:05 +0000
commit167ef6d905b91ff0a741efe63df3f959797ca713 (patch)
treec38e2a45d76bef0c13e3b7907ac6b8a26263d293 /gcc/cgraphunit.c
parent437d571c30e88f368b4f84e4ee80b070164ee690 (diff)
Revert the previous "Fix flags for edges from/to entry/exit basic blocks"
patch that caused regressions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182326 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 086effb8fb8..886a2def0e5 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -1459,8 +1459,8 @@ init_lowered_empty_function (tree decl)
/* Create BB for body of the function and connect it properly. */
bb = create_basic_block (NULL, (void *) 0, ENTRY_BLOCK_PTR);
- make_edge (ENTRY_BLOCK_PTR, bb, EDGE_FALLTHRU);
- make_edge (bb, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
+ make_edge (ENTRY_BLOCK_PTR, bb, 0);
+ make_edge (bb, EXIT_BLOCK_PTR, 0);
return bb;
}