From: pinskia Date: Wed, 24 Jan 2007 22:45:20 +0000 (+0000) Subject: 2007-01-24 Andrew Pinski X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a748c0c9c6f4a0f99a6fb847c3141c114533f26f;p=thirdparty%2Fgcc.git 2007-01-24 Andrew Pinski * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Replace _Unwind_Word with _uleb128_t in the SJLJ context. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121145 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ad5ab8d55aa8..7747e969e6e8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2007-01-24 Andrew Pinski + + * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Replace + _Unwind_Word with _uleb128_t in the SJLJ context. + 2007-01-24 Benjamin Kosnik PR libstdc++/29722 continued diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc index 1e7cc8034dfe..2bdb017908b9 100644 --- a/libstdc++-v3/libsupc++/eh_personality.cc +++ b/libstdc++-v3/libsupc++/eh_personality.cc @@ -469,7 +469,7 @@ PERSONALITY_FUNCTION (int version, } else { - _Unwind_Word cs_lp, cs_action; + _uleb128_t cs_lp, cs_action; do { p = read_uleb128 (p, &cs_lp);