diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-03-25 16:51:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-03-25 16:51:40 +0000 |
commit | 8d5a9abc720e636a4547211695a6ceed1b21cb9d (patch) | |
tree | 156448df940b6cdf5fda9de156fca8bf438559a9 /gdb/dwarf2-frame.h | |
parent | 4591cae21e057a132904d43e3e80fb15a7161fe8 (diff) | |
download | gdb-8d5a9abc720e636a4547211695a6ceed1b21cb9d.zip gdb-8d5a9abc720e636a4547211695a6ceed1b21cb9d.tar.gz gdb-8d5a9abc720e636a4547211695a6ceed1b21cb9d.tar.bz2 |
* dwarf2-frame.h: Update copyrigh year.
(enum dwarf2_frame_reg_rule): Add DWARF2_FRAME_REG_RA_OFFSET.
* dwarf2-frame.c: Update copyright year.
(struct dwarf2_frame_cache): Add member `retaddr_reg'.
(dwarf2_frame_cache): Deal with DWARF2_FRAME_REG_RA_OFFSET.
(dwarf2_frame_prev_register): Handle DWARF2_FRAME_REG_RA_OFFSET.
Diffstat (limited to 'gdb/dwarf2-frame.h')
-rw-r--r-- | gdb/dwarf2-frame.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/dwarf2-frame.h b/gdb/dwarf2-frame.h index 5191c0e..7f951e7 100644 --- a/gdb/dwarf2-frame.h +++ b/gdb/dwarf2-frame.h @@ -1,6 +1,6 @@ /* Frame unwinder for frames with DWARF Call Frame Information. - Copyright 2003, 2004 Free Software Foundation, Inc. + Copyright 2003, 2004, 2005 Free Software Foundation, Inc. Contributed by Mark Kettenis. @@ -54,6 +54,7 @@ enum dwarf2_frame_reg_rule /* These aren't defined by the DWARF2 CFI specification, but are used internally by GDB. */ DWARF2_FRAME_REG_RA, /* Return Address. */ + DWARF2_FRAME_REG_RA_OFFSET, /* Return Address with offset. */ DWARF2_FRAME_REG_CFA /* Call Frame Address. */ }; |