diff options
author | Dave Brolley <brolley@cygnus.com> | 1999-02-05 14:12:38 +0000 |
---|---|---|
committer | Dave Brolley <brolley@gcc.gnu.org> | 1999-02-05 09:12:38 -0500 |
commit | d33c2956a4cce7a752b6326ea2f5ad5b2d12e259 (patch) | |
tree | 636a176dc4c2ba57d50b5153f11fcd6dc2c888b3 /gcc/function.c | |
parent | 2814ec94f8696ba8685cfdd852dafa837a7ba2bd (diff) | |
download | gcc-d33c2956a4cce7a752b6326ea2f5ad5b2d12e259.zip gcc-d33c2956a4cce7a752b6326ea2f5ad5b2d12e259.tar.gz gcc-d33c2956a4cce7a752b6326ea2f5ad5b2d12e259.tar.bz2 |
function.c (fixup_var_refs): Scan catch_clauses too.
Fri Feb 5 17:08:01 1999 Dave Brolley <brolley@cygnus.com>
* function.c (fixup_var_refs): Scan catch_clauses too.
From-SVN: r25049
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index 0a86580..1b692c1 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -1638,6 +1638,11 @@ fixup_var_refs (var, promoted_mode, unsignedp) end_sequence (); } } + + /* Scan the catch clauses for exception handling too. */ + push_to_sequence (catch_clauses); + fixup_var_refs_insns (var, promoted_mode, unsignedp, catch_clauses, 0); + end_sequence (); } /* REPLACEMENTS is a pointer to a list of the struct fixup_replacement and X is |