From: Richard Sandiford Date: Mon, 3 Sep 2001 12:24:24 +0000 (+0000) Subject: eh_personality.cc (parse_lsda_header): Change type of tmp from _Unwind_Ptr to _Unwind... X-Git-Tag: prereleases/libstdc++-3.0.95~2286 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=320daf529e7d1550fb3081adf229cf2bac2005e3;p=thirdparty%2Fgcc.git eh_personality.cc (parse_lsda_header): Change type of tmp from _Unwind_Ptr to _Unwind_Word. * libsupc++/eh_personality.cc (parse_lsda_header): Change type of tmp from _Unwind_Ptr to _Unwind_Word. From-SVN: r45360 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d4227cd20302..8d9a0081715b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-09-03 Richard Sandiford + + * libsupc++/eh_personality.cc (parse_lsda_header): Change type of + tmp from _Unwind_Ptr to _Unwind_Word. + 2001-08-31 Jason Merrill * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Simplify diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc index e735ac860ddb..19fb16a6d4dd 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);