diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-21 13:08:33 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-21 13:08:33 +0000 |
commit | 188879e763785fbed4697e24aa4005fe6384b03b (patch) | |
tree | b37184c9d20bd8707d7e11cb003fcd7410dbb228 /gcc/unwind-pe.h | |
parent | 873ae302d486f4c8375254148b576a8dec834425 (diff) | |
download | gcc-188879e763785fbed4697e24aa4005fe6384b03b.tar.gz |
* unwind-dw2.c: Fix formatting.
* unwind-dw2-fde.c: Likewise.
* unwind-dw2-fde.h: Likewise.
* unwind-pe.h: Likewise.
* varasm.c: Likewise.
* varray.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49045 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-pe.h')
-rw-r--r-- | gcc/unwind-pe.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/unwind-pe.h b/gcc/unwind-pe.h index fe0632432d2..01e05ebf34c 100644 --- a/gcc/unwind-pe.h +++ b/gcc/unwind-pe.h @@ -183,10 +183,10 @@ read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base, if (encoding == DW_EH_PE_aligned) { - _Unwind_Ptr a = (_Unwind_Ptr)p; + _Unwind_Ptr a = (_Unwind_Ptr) p; a = (a + sizeof (void *) - 1) & - sizeof(void *); result = *(_Unwind_Ptr *) a; - p = (const unsigned char *)(a + sizeof (void *)); + p = (const unsigned char *) (a + sizeof (void *)); } else { @@ -201,7 +201,7 @@ read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base, { _Unwind_Word tmp; p = read_uleb128 (p, &tmp); - result = (_Unwind_Ptr)tmp; + result = (_Unwind_Ptr) tmp; } break; @@ -209,7 +209,7 @@ read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base, { _Unwind_Sword tmp; p = read_sleb128 (p, &tmp); - result = (_Unwind_Ptr)tmp; + result = (_Unwind_Ptr) tmp; } break; @@ -246,9 +246,9 @@ read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base, if (result != 0) { result += ((encoding & 0x70) == DW_EH_PE_pcrel - ? (_Unwind_Ptr)u : base); + ? (_Unwind_Ptr) u : base); if (encoding & DW_EH_PE_indirect) - result = *(_Unwind_Ptr *)result; + result = *(_Unwind_Ptr *) result; } } |