diff options
author | gdb-2.8.1 <gdb@fsf.org> | 1988-12-16 00:00:00 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-06-03 15:36:31 +0100 |
commit | bb7592f01006b09c846831a9fb9c306307ba34f6 (patch) | |
tree | 83e99233f937d7a06eee7c627543288feb125929 /gdb/m-vax.h | |
parent | 3bf57d210832b28e9361990830eb722a619f031b (diff) | |
download | gdb-bb7592f01006b09c846831a9fb9c306307ba34f6.zip gdb-bb7592f01006b09c846831a9fb9c306307ba34f6.tar.gz gdb-bb7592f01006b09c846831a9fb9c306307ba34f6.tar.bz2 |
gdb-2.8.1
Diffstat (limited to 'gdb/m-vax.h')
-rw-r--r-- | gdb/m-vax.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/m-vax.h b/gdb/m-vax.h index 5eb2a9f..1d973bf 100644 --- a/gdb/m-vax.h +++ b/gdb/m-vax.h @@ -54,7 +54,7 @@ anyone else from sharing it farther. Help stamp out software hoarding! the new frame is not set up until the new function executes some instructions. */ -#define SAVED_PC_AFTER_CALL(frame) FRAME_SAVED_PC(frame) +#define SAVED_PC_AFTER_CALL(frame) FRAME_SAVED_PC(frame,0) /* This is the amount to subtract from u.u_ar0 to get the offset in the core file of the register values. */ @@ -212,13 +212,13 @@ anyone else from sharing it farther. Help stamp out software hoarding! #define FRAME_CHAIN(thisframe) (read_memory_integer (thisframe + 12, 4)) #define FRAME_CHAIN_VALID(chain, thisframe) \ - (chain != 0 && (FRAME_SAVED_PC (thisframe) >= first_object_file_end)) + (chain != 0 && (FRAME_SAVED_PC (thisframe,ignore) >= first_object_file_end)) #define FRAME_CHAIN_COMBINE(chain, thisframe) (chain) /* Define other aspects of the stack frame. */ -#define FRAME_SAVED_PC(frame) (read_memory_integer (frame + 16, 4)) +#define FRAME_SAVED_PC(frame, ignore) (read_memory_integer (frame + 16, 4), 0) /* Cannot find the AP register value directly from the FP value. Must find it saved in the frame called by this one, or in the AP register |