diff options
author | Alexander Kabaev <kan@FreeBSD.org> | 2003-02-10 05:41:50 +0000 |
---|---|---|
committer | Alexander Kabaev <kan@FreeBSD.org> | 2003-02-10 05:41:50 +0000 |
commit | 7b74929d749aa5688fd0814a9880872323e02cde (patch) | |
tree | f843ff90d71b900271088361ed96ff82eb2a365d /contrib/gcc/cfganal.c | |
parent | e3dd383f0088d7ec9c67022680e31a5b756d4258 (diff) |
Gcc 3.2.2-release.
Notes
Notes:
svn path=/vendor/gcc/dist/; revision=110611
Diffstat (limited to 'contrib/gcc/cfganal.c')
-rw-r--r-- | contrib/gcc/cfganal.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/gcc/cfganal.c b/contrib/gcc/cfganal.c index 8aba2318692b..f0ca224e1be7 100644 --- a/contrib/gcc/cfganal.c +++ b/contrib/gcc/cfganal.c @@ -1,6 +1,6 @@ /* Control flow graph analysis code for GNU compiler. Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + 1999, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -328,10 +328,11 @@ flow_call_edges_add (blocks) for (e = bb->succ; e; e = e->succ_next) if (e->dest == EXIT_BLOCK_PTR) - break; - - insert_insn_on_edge (gen_rtx_USE (VOIDmode, const0_rtx), e); - commit_edge_insertions (); + { + insert_insn_on_edge (gen_rtx_USE (VOIDmode, const0_rtx), e); + commit_edge_insertions (); + break; + } } } |