diff options
author | Jeff Law <law@redhat.com> | 2011-04-29 21:46:17 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2011-04-29 21:46:17 -0600 |
commit | a6545a3d943012f72ba5d0ed49471412b0e308e8 (patch) | |
tree | 381c4e0ec54f6f626634109347b305ca4b62925b /gcc/tree-ssa-threadedge.c | |
parent | 8dc7645fcbc0eaa1110e47430f65f4a2fcad1d29 (diff) | |
download | gcc-a6545a3d943012f72ba5d0ed49471412b0e308e8.zip gcc-a6545a3d943012f72ba5d0ed49471412b0e308e8.tar.gz gcc-a6545a3d943012f72ba5d0ed49471412b0e308e8.tar.bz2 |
tree-ssa-threadedge.c (thread_across_edge): Add missing return.
* tree-ssa-threadedge.c (thread_across_edge): Add missing return.
* gcc.dg/tree-ssa/ssa-dom-thread-4.c: New test.
From-SVN: r173206
Diffstat (limited to 'gcc/tree-ssa-threadedge.c')
-rw-r--r-- | gcc/tree-ssa-threadedge.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-ssa-threadedge.c b/gcc/tree-ssa-threadedge.c index 1fee9bf..24e63977c 100644 --- a/gcc/tree-ssa-threadedge.c +++ b/gcc/tree-ssa-threadedge.c @@ -771,6 +771,7 @@ thread_across_edge (gimple dummy_cond, remove_temporary_equivalences (stack); register_jump_thread (e, taken_edge); + return; } } |