diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-05-25 16:22:41 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-05-25 16:22:41 +0000 |
commit | 6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9 (patch) | |
tree | 69bf808513b4c3989a99631722f4ab18a36c089f /gdb/stack.c | |
parent | 30ffb593f81ebf09e891b09d87123dfd42b7fc98 (diff) | |
download | gdb-6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9.zip gdb-6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9.tar.gz gdb-6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9.tar.bz2 |
* Many places: replace "the inferior" in messages with "the program"
or "the program being debugged".
* inflow.c (try_writing_regs): Remove; it's been #if 0'd forever
and I'm getting sick of maintaining it.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 37f92e4..4849e5d 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -388,7 +388,7 @@ frame_info (addr_exp, from_tty) enum language funlang = language_unknown; if (!target_has_stack) - error ("No inferior or core file."); + error ("No stack."); frame = parse_frame_specification (addr_exp); if (!frame) @@ -897,8 +897,8 @@ print_frame_arg_vars (frame, stream) and it is passed as a double and converted to float by the prologue (in the latter case the type of the LOC_ARG symbol is double and the type of the LOC_LOCAL symbol is - float). It's possible this should be dealt with in - symbol reading the way it now is for LOC_REGPARM. */ + float). There are also LOC_ARG/LOC_REGISTER pairs which + are not combined in symbol-reading. */ sym2 = lookup_symbol (SYMBOL_NAME (sym), b, VAR_NAMESPACE, (int *)NULL, (struct symtab **)NULL); |