aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>2005-08-01 18:32:51 +0000
committerFred Fish <fnf@specifix.com>2005-08-01 18:32:51 +0000
commit53fbdf7dd5c085db85e2639e66a3ac47c432a068 (patch)
treec865d354f37f8bab940063873abebd2545709e98 /gdb
parentca06016a0a91e8db80afb9fd9afdf3bc6dbdde8e (diff)
downloadfsf-binutils-gdb-53fbdf7dd5c085db85e2639e66a3ac47c432a068.zip
fsf-binutils-gdb-53fbdf7dd5c085db85e2639e66a3ac47c432a068.tar.gz
fsf-binutils-gdb-53fbdf7dd5c085db85e2639e66a3ac47c432a068.tar.bz2
Reviewed/approved by Daniel Jacobowitz <dan@codesourcery.com>
2005-08-01 Fred Fish <fnf@specifix.com> * stack.c (parse_frame_specification_1): Remove use of obsolete SETUP_ARBITRARY_FRAME macro.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/stack.c16
2 files changed, 5 insertions, 16 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 7f17909..4e124de 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-01 Fred Fish <fnf@specifix.com>
+
+ * stack.c (parse_frame_specification_1): Remove use of obsolete
+ SETUP_ARBITRARY_FRAME macro.
+
2005-08-01 Daniel Jacobowitz <dan@codesourcery.com>
* dwarf2-frame.c (read_signed_leb128): Handle values that do not
diff --git a/gdb/stack.c b/gdb/stack.c
index 6bbfb82..5a0c1f9 100644
--- a/gdb/stack.c
+++ b/gdb/stack.c
@@ -817,22 +817,6 @@ parse_frame_specification_1 (const char *frame_exp, const char *message,
struct frame_id id = frame_id_build_wild (addrs[0]);
struct frame_info *fid;
- /* If SETUP_ARBITRARY_FRAME is defined, then frame
- specifications take at least 2 addresses. It is important to
- detect this case here so that "frame 100" does not give a
- confusing error message like "frame specification requires
- two addresses". This of course does not solve the "frame
- 100" problem for machines on which a frame specification can
- be made with one address. To solve that, we need a new
- syntax for a specifying a frame by address. I think the
- cleanest syntax is $frame(0x45) ($frame(0x23,0x45) for two
- args, etc.), but people might think that is too much typing,
- so I guess *0x23,0x45 would be a possible alternative (commas
- really should be used instead of spaces to delimit; using
- spaces normally works in an expression). */
-#ifdef SETUP_ARBITRARY_FRAME
- error (_("No frame %s"), paddr_d (addrs[0]));
-#endif
/* If (s)he specifies the frame with an address, he deserves
what (s)he gets. Still, give the highest one that matches.
(NOTE: cagney/2004-10-29: Why highest, or outer-most, I don't