diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1995-10-21 13:14:53 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1995-10-21 13:14:53 +0000 |
commit | 09af58685445072bdf77e9257632da71f979162c (patch) | |
tree | a9eb8ec564ac3f31945f3e767f6887260d134a40 /gdb/rs6000-nat.c | |
parent | 8490169d216ca66f0d2a2a627d9be8aaadaa9ced (diff) | |
download | gdb-09af58685445072bdf77e9257632da71f979162c.zip gdb-09af58685445072bdf77e9257632da71f979162c.tar.gz gdb-09af58685445072bdf77e9257632da71f979162c.tar.bz2 |
* alpha-tdep.c, mips-tdep.c (init_extra_frame_info):
Do not set saved registers from heuristics for a sigtramp frame.
* dwarfread.c (enum_type): Determine signedness of enum type
from enumerators.
* mips-tdep.c: Include gdb_string.h, gcc -Wall lint.
* rs6000-nat.c (xcoff_relocate_core): Fix typo.
* valops.c (value_repeat): Fix length of memory transfer to
match recent allocate_repeat_value change.
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index e6e90ee..51ddf44 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -742,7 +742,7 @@ xcoff_relocate_core (target) /* We must update the to_sections field in the core_ops structure now to avoid dangling pointer dereferences. */ - update_coreops = core_ops.to_sections === target->to_sections; + update_coreops = core_ops.to_sections == target->to_sections; count = target->to_sections_end - target->to_sections; count += 2; |