aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-11-06 18:54:11 +0000
committerAndrew Cagney <cagney@redhat.com>2001-11-06 18:54:11 +0000
commite6b47f070d6de8f18b35fa78f169d1107484d08f (patch)
tree3c8e0fc152cbe73890ec305fb5956862a0258324
parent69a0d5f4faf69df010fda32619a31359d4bedf04 (diff)
downloadgdb-e6b47f070d6de8f18b35fa78f169d1107484d08f.zip
gdb-e6b47f070d6de8f18b35fa78f169d1107484d08f.tar.gz
gdb-e6b47f070d6de8f18b35fa78f169d1107484d08f.tar.bz2
Zap another #ifdef INIT_EXTRA_FRAME_INFO
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/blockframe.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d453520..68d8d87 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-06 Andrew Cagney <ac131313@redhat.com>
+
+ * blockframe.c (get_prev_frame): Replace #ifdef
+ INIT_EXTRA_FRAME_INFO with run-time test.
+
2001-11-05 Andrew Cagney <ac131313@redhat.com>
* gdbarch.sh (push_return_address): Change to a function with
diff --git a/gdb/blockframe.c b/gdb/blockframe.c
index 1c6ec2c..78331ce 100644
--- a/gdb/blockframe.c
+++ b/gdb/blockframe.c
@@ -437,9 +437,8 @@ get_prev_frame (struct frame_info *next_frame)
INIT_FRAME_PC_FIRST (fromleaf, prev);
-#ifdef INIT_EXTRA_FRAME_INFO
- INIT_EXTRA_FRAME_INFO (fromleaf, prev);
-#endif
+ if (INIT_EXTRA_FRAME_INFO_P ())
+ INIT_EXTRA_FRAME_INFO (fromleaf, prev);
/* This entry is in the frame queue now, which is good since
FRAME_SAVED_PC may use that queue to figure out its value