diff options
author | Thiemo Seufer <ths@networkno.de> | 2007-01-24 13:37:07 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2007-01-24 13:37:07 +0000 |
commit | 76adddc07800276f3af0a85bbecbf6eb4de2d118 (patch) | |
tree | 189b31098500bd5c2e404de8fb2138d0707028db /gdb | |
parent | 0943a508e64c955c4117744666409540dd4d5ea0 (diff) | |
download | gdb-76adddc07800276f3af0a85bbecbf6eb4de2d118.tar.gz |
* mips-linux-tdep.c (mips_linux_n64_rt_sigframe): Fix struct
initialization.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/mips-linux-tdep.c | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ec2011f60a3..e195ca8c3cb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-01-24 Thiemo Seufer <ths@mips.com> + + * mips-linux-tdep.c (mips_linux_n64_rt_sigframe): Fix struct + initialization. + 2007-01-24 Vladimir Prus <vladimir@codesourcery.com> Refactor getting children name, value and type access diff --git a/gdb/mips-linux-tdep.c b/gdb/mips-linux-tdep.c index b17eb5e82ea..5ce51b25096 100644 --- a/gdb/mips-linux-tdep.c +++ b/gdb/mips-linux-tdep.c @@ -799,9 +799,11 @@ static const struct tramp_frame mips_linux_n32_rt_sigframe = { static const struct tramp_frame mips_linux_n64_rt_sigframe = { SIGTRAMP_FRAME, 4, - { MIPS_INST_LI_V0_N64_RT_SIGRETURN, - MIPS_INST_SYSCALL, - TRAMP_SENTINEL_INSN }, + { + { MIPS_INST_LI_V0_N64_RT_SIGRETURN, -1 }, + { MIPS_INST_SYSCALL, -1 }, + { TRAMP_SENTINEL_INSN, -1 } + }, mips_linux_n32n64_sigframe_init }; |