mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 19:44:11 +08:00
* rs6000-tdep.c (frameless_function_invocation): Don't even think
about framlessness except on the innermost frame.
This commit is contained in:
parent
0848ad1c4d
commit
b0e932ad45
@ -1,5 +1,8 @@
|
||||
Fri Apr 2 08:23:14 1993 Jim Kingdon (kingdon@cygnus.com)
|
||||
|
||||
* rs6000-tdep.c (frameless_function_invocation): Don't even think
|
||||
about framlessness except on the innermost frame.
|
||||
|
||||
* xcoffexec.c: Call fatal() not abort().
|
||||
|
||||
* stabsread.c (patch_block_stabs): If stab & no symbol, make
|
||||
|
@ -956,6 +956,10 @@ int pcsaved;
|
||||
CORE_ADDR func_start;
|
||||
struct aix_framedata fdata;
|
||||
|
||||
if (fi->next != NULL)
|
||||
/* Don't even think about framelessness except on the innermost frame. */
|
||||
return 0;
|
||||
|
||||
func_start = get_pc_function_start (fi->pc) + FUNCTION_START_OFFSET;
|
||||
|
||||
/* If we failed to find the start of the function, it is a mistake
|
||||
|
Loading…
Reference in New Issue
Block a user