* mips-tdep.c (mips_convert_register_p): Correct coding style.
This commit is contained in:
parent
de13fcf2f4
commit
eaa05d599e
|
@ -1,3 +1,7 @@
|
||||||
|
2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
|
||||||
|
|
||||||
|
* mips-tdep.c (mips_convert_register_p): Correct coding style.
|
||||||
|
|
||||||
2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
|
2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
|
||||||
|
|
||||||
* mips-tdep.c (mips_pseudo_register_type): Use
|
* mips-tdep.c (mips_pseudo_register_type): Use
|
||||||
|
|
|
@ -845,8 +845,8 @@ static int
|
||||||
mips_convert_register_p (struct gdbarch *gdbarch,
|
mips_convert_register_p (struct gdbarch *gdbarch,
|
||||||
int regnum, struct type *type)
|
int regnum, struct type *type)
|
||||||
{
|
{
|
||||||
return mips_convert_register_float_case_p (gdbarch, regnum, type)
|
return (mips_convert_register_float_case_p (gdbarch, regnum, type)
|
||||||
|| mips_convert_register_gpreg_case_p (gdbarch, regnum, type);
|
|| mips_convert_register_gpreg_case_p (gdbarch, regnum, type));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in New Issue