From 290f6157c842ac3db2267d0ef95a735adb83f9d4 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Fri, 3 Oct 2003 17:42:08 +0200 Subject: unwind-pe.h (read_encoded_value_with_base): Constify u and its inizialization cast. 2003-10-03 Paolo Carlini * unwind-pe.h (read_encoded_value_with_base): Constify u and its inizialization cast. From-SVN: r72071 --- gcc/ChangeLog | 5 +++++ gcc/unwind-pe.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c80a52..bae0598 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-10-03 Paolo Carlini + + * unwind-pe.h (read_encoded_value_with_base): Constify u and + its inizialization cast. + 2003-10-03 Richard Sandiford PR target/12485 diff --git a/gcc/unwind-pe.h b/gcc/unwind-pe.h index ec5d27f..224ade3 100644 --- a/gcc/unwind-pe.h +++ b/gcc/unwind-pe.h @@ -1,5 +1,5 @@ /* Exception handling and frame unwind runtime interface routines. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -191,7 +191,7 @@ read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base, signed s8 __attribute__ ((mode (DI))); } __attribute__((__packed__)); - union unaligned *u = (union unaligned *) p; + const union unaligned *u = (const union unaligned *) p; _Unwind_Internal_Ptr result; if (encoding == DW_EH_PE_aligned) -- cgit v1.1