diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-03 12:24:24 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-03 12:24:24 +0000 |
commit | 8bf0332d6f32d1330c2f4318c119124f23086e5e (patch) | |
tree | 0f1c7cf35b324f24a79bca7cf33298fdb0649598 /libstdc++-v3 | |
parent | fb906cc9a1ab3725e377d9d229d029856abbd192 (diff) | |
download | gcc-8bf0332d6f32d1330c2f4318c119124f23086e5e.tar.gz |
* libsupc++/eh_personality.cc (parse_lsda_header): Change type of
tmp from _Unwind_Ptr to _Unwind_Word.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45360 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/libsupc++/eh_personality.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d4227cd2030..8d9a0081715 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-09-03 Richard Sandiford <rsandifo@redhat.com> + + * libsupc++/eh_personality.cc (parse_lsda_header): Change type of + tmp from _Unwind_Ptr to _Unwind_Word. + 2001-08-31 Jason Merrill <jason_merrill@redhat.com> * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Simplify diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc index e735ac860dd..19fb16a6d4d 100644 --- a/libstdc++-v3/libsupc++/eh_personality.cc +++ b/libstdc++-v3/libsupc++/eh_personality.cc @@ -52,7 +52,7 @@ static const unsigned char * parse_lsda_header (_Unwind_Context *context, const unsigned char *p, lsda_header_info *info) { - _Unwind_Ptr tmp; + _Unwind_Word tmp; unsigned char lpstart_encoding; info->Start = (context ? _Unwind_GetRegionStart (context) : 0); |