From d33c2956a4cce7a752b6326ea2f5ad5b2d12e259 Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Fri, 5 Feb 1999 14:12:38 +0000 Subject: function.c (fixup_var_refs): Scan catch_clauses too. Fri Feb 5 17:08:01 1999 Dave Brolley * function.c (fixup_var_refs): Scan catch_clauses too. From-SVN: r25049 --- gcc/function.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/function.c') 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 -- cgit v1.1