patch that caused regressions.
From-SVN: r182326
* tree-sra.c (build_ref_for_model): Replicate a chain of COMPONENT_REFs
in the expression of MODEL instead of just the last one.
-2011-12-12 Dmitry Vyukov <dvyukov@google.com>
-
- * cgraphunit.c (init_lowered_empty_function): Fix flags for new edges.
-
2011-12-12 Jakub Jelinek <jakub@redhat.com>
PR middle-end/51510
/* 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;
}