OSDN Git Service

* libsupc++/eh_personality.cc (parse_lsda_header): Change type of
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Sep 2001 12:24:24 +0000 (12:24 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Sep 2001 12:24:24 +0000 (12:24 +0000)
tmp from _Unwind_Ptr to _Unwind_Word.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45360 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/eh_personality.cc

index d4227cd..8d9a008 100644 (file)
@@ -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
index e735ac8..19fb16a 100644 (file)
@@ -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);