diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-07 19:57:59 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-07 19:57:59 +0000 |
commit | 840452b5e2461146e14fc2a1673bff012746d618 (patch) | |
tree | cf7e4f685b89b084b9be0490d8bf2d8b2c1547d2 /gcc/ada/raise-gcc.c | |
parent | e01e695f6b2034ae0c42ace7b632e3828a2bf27c (diff) | |
download | gcc-840452b5e2461146e14fc2a1673bff012746d618.tar.gz |
Re-apply accidentally reverted change:
2007-02-07 Andreas Krebbel <krebbel1@de.ibm.com>
* raise-gcc.c (get_region_description_for, get_call_site_action_for,
get_action_description_for): Replace _Unwind_Word with _uleb128_t
and _Unwind_SWord with _sleb128_t.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128252 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/raise-gcc.c')
-rw-r--r-- | gcc/ada/raise-gcc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/raise-gcc.c b/gcc/ada/raise-gcc.c index 55371d57b7e..8a7cf5a568f 100644 --- a/gcc/ada/raise-gcc.c +++ b/gcc/ada/raise-gcc.c @@ -540,7 +540,7 @@ get_region_description_for (_Unwind_Context *uw_context, region_descriptor *region) { const unsigned char * p; - _Unwind_Word tmp; + _uleb128_t tmp; unsigned char lpbase_encoding; /* Get the base address of the lsda information. If the provided context @@ -705,7 +705,7 @@ get_call_site_action_for (_Unwind_Context *uw_context, } else { - _Unwind_Word cs_lp, cs_action; + _uleb128_t cs_lp, cs_action; /* Let the caller know there may be an action to take, but let it determine the kind. */ @@ -765,7 +765,7 @@ get_call_site_action_for (_Unwind_Context *uw_context, while (p < region->action_table) { _Unwind_Ptr cs_start, cs_len, cs_lp; - _Unwind_Word cs_action; + _uleb128_t cs_action; /* Note that all call-site encodings are "absolute" displacements. */ p = read_encoded_value (0, region->call_site_encoding, p, &cs_start); @@ -913,7 +913,7 @@ get_action_description_for (_Unwind_Context *uw_context, { const unsigned char * p = action->table_entry; - _Unwind_Sword ar_filter, ar_disp; + _sleb128_t ar_filter, ar_disp; action->kind = nothing; |