* mips-linux-tdep.c (mips_linux_n64_rt_sigframe): Fix struct
initialization.
This commit is contained in:
parent
2024f65ab8
commit
fcbd8a5cb7
2 changed files with 10 additions and 3 deletions
|
@ -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>
|
2007-01-24 Vladimir Prus <vladimir@codesourcery.com>
|
||||||
|
|
||||||
Refactor getting children name, value and type access
|
Refactor getting children name, value and type access
|
||||||
|
|
|
@ -799,9 +799,11 @@ static const struct tramp_frame mips_linux_n32_rt_sigframe = {
|
||||||
static const struct tramp_frame mips_linux_n64_rt_sigframe = {
|
static const struct tramp_frame mips_linux_n64_rt_sigframe = {
|
||||||
SIGTRAMP_FRAME,
|
SIGTRAMP_FRAME,
|
||||||
4,
|
4,
|
||||||
{ MIPS_INST_LI_V0_N64_RT_SIGRETURN,
|
{
|
||||||
MIPS_INST_SYSCALL,
|
{ MIPS_INST_LI_V0_N64_RT_SIGRETURN, -1 },
|
||||||
TRAMP_SENTINEL_INSN },
|
{ MIPS_INST_SYSCALL, -1 },
|
||||||
|
{ TRAMP_SENTINEL_INSN, -1 }
|
||||||
|
},
|
||||||
mips_linux_n32n64_sigframe_init
|
mips_linux_n32n64_sigframe_init
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue