+2004-07-24 Mark Kettenis <kettenis@gnu.org>
+
+ * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
+ (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
+ encoding.
+ (dwarf2_build_frame_info): Adjust for removal of `addr_size'
+ member of `struct comp_unit'.
+
2004-07-23 Andrew Cagney <cagney@gnu.org>
* infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
/* Linked list of CIEs for this object. */
struct dwarf2_cie *cie;
- /* Address size for this unit - from unit header. */
- unsigned char addr_size;
-
/* Pointer to the .debug_frame section loaded into memory. */
char *dwarf_frame_buffer;
cie->cie_pointer = cie_pointer;
/* The encoding for FDE's in a normal .debug_frame section
- depends on the target address size as specified in the
- Compilation Unit Header. */
- cie->encoding = encoding_for_size (unit->addr_size);
+ depends on the target address size. */
+ cie->encoding = DW_EH_PE_absptr;
/* Check version number. */
cie_version = read_1_byte (unit->abfd, buf);
/* Build a minimal decoding of the DWARF2 compilation unit. */
unit.abfd = objfile->obfd;
unit.objfile = objfile;
- unit.addr_size = objfile->obfd->arch_info->bits_per_address / 8;
unit.dbase = 0;
unit.tbase = 0;