diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-05-25 18:09:09 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-05-25 18:09:09 +0000 |
commit | 392a587b0562bfd8561bc15ad2625a4f49f461f0 (patch) | |
tree | 933e0970b7845c901c7ea3e128fa9cb0dcf9fe14 /gdb/fr30-tdep.c | |
parent | 751d21b5b946a4a451552fbac692b14abea3d816 (diff) | |
download | gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.zip gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.tar.gz gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.tar.bz2 |
import gdb-1999-05-25 snapshot
Diffstat (limited to 'gdb/fr30-tdep.c')
-rw-r--r-- | gdb/fr30-tdep.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/fr30-tdep.c b/gdb/fr30-tdep.c index ae3b886..13d9426 100644 --- a/gdb/fr30-tdep.c +++ b/gdb/fr30-tdep.c @@ -28,6 +28,22 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "gdbcore.h" #include "symfile.h" +/* An expression that tells us whether the function invocation represented + by FI does not have a frame on the stack associated with it. */ +int +fr30_frameless_function_invocation (fi) + struct frame_info *fi; +{ + int frameless; + CORE_ADDR func_start, after_prologue; + func_start = (get_pc_function_start ((fi)->pc) + + FUNCTION_START_OFFSET); + after_prologue = func_start; + after_prologue = SKIP_PROLOGUE (after_prologue); + frameless = (after_prologue == func_start); + return frameless; +} + /* Function: pop_frame This routine gets called when either the user uses the `return' command, or the call dummy breakpoint gets hit. */ |