diff options
Diffstat (limited to 'gcc/unwind-dw2-fde.h')
-rw-r--r-- | gcc/unwind-dw2-fde.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/unwind-dw2-fde.h b/gcc/unwind-dw2-fde.h index 4f8641bf9e1..06dd9c35944 100644 --- a/gcc/unwind-dw2-fde.h +++ b/gcc/unwind-dw2-fde.h @@ -160,13 +160,13 @@ typedef struct dwarf_fde fde; static inline const struct dwarf_cie * get_cie (const struct dwarf_fde *f) { - return (void *)&f->CIE_delta - f->CIE_delta; + return (const void *)&f->CIE_delta - f->CIE_delta; } static inline const fde * next_fde (const fde *f) { - return (const fde *) ((char *) f + f->length + sizeof (f->length)); + return (const fde *) ((const char *) f + f->length + sizeof (f->length)); } extern const fde * _Unwind_Find_FDE (void *, struct dwarf_eh_bases *); |