diff options
Diffstat (limited to 'contrib/gcc/reorg.c')
-rw-r--r-- | contrib/gcc/reorg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gcc/reorg.c b/contrib/gcc/reorg.c index 31918ec43e30..3fdf941ad793 100644 --- a/contrib/gcc/reorg.c +++ b/contrib/gcc/reorg.c @@ -236,6 +236,12 @@ stop_search_p (insn, labels_p) if (insn == 0) return 1; + /* If the insn can throw an exception that is caught within the function, + it may effectively perform a jump from the viewpoint of the function. + Therefore act like for a jump. */ + if (can_throw_internal (insn)) + return 1; + switch (GET_CODE (insn)) { case NOTE: |