diff options
author | Michal Ludvig <mludvig@suse.cz> | 2002-06-18 09:04:24 +0000 |
---|---|---|
committer | Michal Ludvig <mludvig@suse.cz> | 2002-06-18 09:04:24 +0000 |
commit | cc22880b3edfaa8be9302e9e634e3b91770242c6 (patch) | |
tree | 64f1dc3311033742a39fc08a006788735fc9a7d2 | |
parent | f9c3326aeccc27f8ed55c7c3319f254393fbdbbc (diff) | |
download | ppe42-binutils-cc22880b3edfaa8be9302e9e634e3b91770242c6.tar.gz ppe42-binutils-cc22880b3edfaa8be9302e9e634e3b91770242c6.zip |
2002-06-18 Michal Ludvig <mludvig@suse.cz>
* frame.h (struct frame_info): Change type of context to
'struct context'.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/frame.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 54abec0dfe..e84bb6fbc7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-06-18 Michal Ludvig <mludvig@suse.cz> + + * frame.h (struct frame_info): Change type of context to + 'struct context'. + 2002-06-17 Andrew Cagney <cagney@redhat.com> * gdbarch.sh (REGISTER_NAME): Change return type a constant string diff --git a/gdb/frame.h b/gdb/frame.h index c1df5fcdda..4406fc8e8d 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -133,7 +133,7 @@ struct frame_info /* If dwarf2 unwind frame informations is used, this structure holds all related unwind data. */ - struct unwind_contect *context; + struct context *context; /* See description above. Return the register value for the previous frame. */ |