aboutsummaryrefslogtreecommitdiff
path: root/gdb/frame.h
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-05-07 23:19:14 +0000
committerMark Kettenis <kettenis@gnu.org>2004-05-07 23:19:14 +0000
commit756e95f19845d6194524bd9f4c37851f3f7b8de5 (patch)
tree54a975303969f9d0981b6c99edadb9fb51131968 /gdb/frame.h
parent2b4855ab6b8e69b375c49df490db63ececf17da8 (diff)
downloadgdb-756e95f19845d6194524bd9f4c37851f3f7b8de5.zip
gdb-756e95f19845d6194524bd9f4c37851f3f7b8de5.tar.gz
gdb-756e95f19845d6194524bd9f4c37851f3f7b8de5.tar.bz2
* frame.c (get_prev_frame_1): Work around GCC bug.
* frame.h: Add comment about GCC bug.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r--gdb/frame.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/gdb/frame.h b/gdb/frame.h
index 2ab8b8e..55d357c 100644
--- a/gdb/frame.h
+++ b/gdb/frame.h
@@ -310,7 +310,22 @@ extern CORE_ADDR get_frame_base (struct frame_info *);
/* Return the per-frame unique identifer. Can be used to relocate a
frame after a frame cache flush (and other similar operations). If
- FI is NULL, return the null_frame_id. */
+ FI is NULL, return the null_frame_id.
+
+ NOTE: kettenis/20040508: These functions return a structure. On
+ platforms where structures are returned in static storage (vax,
+ m68k), this may trigger compiler bugs in code like:
+
+ if (frame_id_eq (get_frame_id (l), get_frame_id (r)))
+
+ where the return value from the first get_frame_id (l) gets
+ overwritten by the second get_frame_id (r). Please avoid writing
+ code like this. Use code like:
+
+ struct frame_id id = get_frame_id (l);
+ if (frame_id_eq (id, get_frame_id (r)))
+
+ instead, since that avoids the bug. */
extern struct frame_id get_frame_id (struct frame_info *fi);
extern struct frame_id frame_unwind_id (struct frame_info *next_frame);