summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorAndrew Pinski <andrew_pinski@playstation.sony.com>2007-01-24 22:45:20 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2007-01-24 14:45:20 -0800
commitca32e64edd247c50165fcf52427972d5587e2754 (patch)
tree49efb85e9a6325a4700a05dcd446034387159084 /libstdc++-v3
parentb7c27d5169bfb98ea4d73c52c4e17961cb9ab160 (diff)
downloadgcc-ca32e64edd247c50165fcf52427972d5587e2754.tar.gz
eh_personality.cc (PERSONALITY_FUNCTION): Replace _Unwind_Word with _uleb128_t in the SJLJ context.
2007-01-24 Andrew Pinski <andrew_pinski@playstation.sony.com> * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Replace _Unwind_Word with _uleb128_t in the SJLJ context. From-SVN: r121145
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/libsupc++/eh_personality.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index ad5ab8d55aa..7747e969e6e 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
+
+ * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Replace
+ _Unwind_Word with _uleb128_t in the SJLJ context.
+
2007-01-24 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/29722 continued
diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc
index 1e7cc8034df..2bdb017908b 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);