diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-04-06 19:08:17 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-04-06 19:08:17 +0000 |
commit | 8cf716522f96f604dd42b607c8113a3d24f8b6fc (patch) | |
tree | b4eb1fad842e7e57f0836279bae9e4d82891d90e /gdb/arm-tdep.c | |
parent | e6ba3bc976d3e71e13c550474c2c39463e2bdecc (diff) | |
download | gdb-8cf716522f96f604dd42b607c8113a3d24f8b6fc.zip gdb-8cf716522f96f604dd42b607c8113a3d24f8b6fc.tar.gz gdb-8cf716522f96f604dd42b607c8113a3d24f8b6fc.tar.bz2 |
2003-04-06 Andrew Cagney <cagney@redhat.com>
* arm-tdep.c (arm_frameless_function_invocation): Fix typo.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 5d8c538..748422b 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -295,7 +295,7 @@ arm_frameless_function_invocation (struct frame_info *fi) stmdb sp!, {} sub sp, ip, #4. */ - func_start = (get_frame_func (fi)) + FUNCTION_START_OFFSET); + func_start = (get_frame_func (fi) + FUNCTION_START_OFFSET); after_prologue = SKIP_PROLOGUE (func_start); /* There are some frameless functions whose first two instructions |