diff options
author | Ben Elliston <bje@redhat.com> | 2001-06-18 06:43:51 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2001-06-18 16:43:51 +1000 |
commit | ea446801a095960d502617b0bb91497d3a4ab9df (patch) | |
tree | 601a67a42d74571cb3f66d0d78d147165947c1d9 | |
parent | ee773fcc770aa8210e81cd94916f3ecb50c51458 (diff) | |
download | gcc-ea446801a095960d502617b0bb91497d3a4ab9df.zip gcc-ea446801a095960d502617b0bb91497d3a4ab9df.tar.gz gcc-ea446801a095960d502617b0bb91497d3a4ab9df.tar.bz2 |
except.c (resolve_fixup_regions): Initialise "cleanup".
2001-06-18 Ben Elliston <bje@redhat.com>
* except.c (resolve_fixup_regions): Initialise "cleanup".
From-SVN: r43432
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/except.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c6426bf..c45255a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-06-18 Ben Elliston <bje@redhat.com> + + * except.c (resolve_fixup_regions): Initialise "cleanup". + 2001-06-17 Neil Booth <neil@daikokuya.demon.co.uk> * tm.texi: Document STDC_0_IN_SYSTEM_HEADERS. diff --git a/gcc/except.c b/gcc/except.c index 6e90fe4..90c0dc9 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1088,7 +1088,7 @@ resolve_fixup_regions () for (i = 1; i <= n; ++i) { struct eh_region *fixup = cfun->eh->region_array[i]; - struct eh_region *cleanup; + struct eh_region *cleanup = 0; if (! fixup || fixup->type != ERT_FIXUP) continue; |