forked from Imagelibrary/binutils-gdb
linux-ppc-low.c: Add casts
Trivial casts for C++. gdb/gdbserver/ChangeLog: * linux-ppc-low.c (ppc_get_hwcap): Add cast. (ppc_fill_vsxregset): Likewise. (ppc_store_vsxregset): Likewise. (ppc_fill_vrregset): Likewise. (ppc_store_vrregset): Likewise. (ppc_fill_evrregset): Likewise. (ppc_store_evrregset): Likewise.
This commit is contained in:
committed by
Simon Marchi
parent
e6c5bb0517
commit
2bc84e8a6d
@@ -1,3 +1,13 @@
|
|||||||
|
2015-11-03 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
|
* linux-ppc-low.c (ppc_get_hwcap): Add cast.
|
||||||
|
(ppc_fill_vsxregset): Likewise.
|
||||||
|
(ppc_store_vsxregset): Likewise.
|
||||||
|
(ppc_fill_vrregset): Likewise.
|
||||||
|
(ppc_store_vrregset): Likewise.
|
||||||
|
(ppc_fill_evrregset): Likewise.
|
||||||
|
(ppc_store_evrregset): Likewise.
|
||||||
|
|
||||||
2015-11-03 Simon Marchi <simon.marchi@polymtl.ca>
|
2015-11-03 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* linux-ppc-low.c (ppc_usrregs_info): Remove
|
* linux-ppc-low.c (ppc_usrregs_info): Remove
|
||||||
|
|||||||
@@ -346,7 +346,7 @@ ppc_get_hwcap (unsigned long *valp)
|
|||||||
{
|
{
|
||||||
const struct target_desc *tdesc = current_process ()->tdesc;
|
const struct target_desc *tdesc = current_process ()->tdesc;
|
||||||
int wordsize = register_size (tdesc, 0);
|
int wordsize = register_size (tdesc, 0);
|
||||||
unsigned char *data = alloca (2 * wordsize);
|
unsigned char *data = (unsigned char *) alloca (2 * wordsize);
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
|
|
||||||
while ((*the_target->read_auxv) (offset, data, 2 * wordsize) == 2 * wordsize)
|
while ((*the_target->read_auxv) (offset, data, 2 * wordsize) == 2 * wordsize)
|
||||||
@@ -446,7 +446,7 @@ static void
|
|||||||
ppc_fill_vsxregset (struct regcache *regcache, void *buf)
|
ppc_fill_vsxregset (struct regcache *regcache, void *buf)
|
||||||
{
|
{
|
||||||
int i, base;
|
int i, base;
|
||||||
char *regset = buf;
|
char *regset = (char *) buf;
|
||||||
|
|
||||||
if (!(ppc_hwcap & PPC_FEATURE_HAS_VSX))
|
if (!(ppc_hwcap & PPC_FEATURE_HAS_VSX))
|
||||||
return;
|
return;
|
||||||
@@ -460,7 +460,7 @@ static void
|
|||||||
ppc_store_vsxregset (struct regcache *regcache, const void *buf)
|
ppc_store_vsxregset (struct regcache *regcache, const void *buf)
|
||||||
{
|
{
|
||||||
int i, base;
|
int i, base;
|
||||||
const char *regset = buf;
|
const char *regset = (const char *) buf;
|
||||||
|
|
||||||
if (!(ppc_hwcap & PPC_FEATURE_HAS_VSX))
|
if (!(ppc_hwcap & PPC_FEATURE_HAS_VSX))
|
||||||
return;
|
return;
|
||||||
@@ -476,7 +476,7 @@ static void
|
|||||||
ppc_fill_vrregset (struct regcache *regcache, void *buf)
|
ppc_fill_vrregset (struct regcache *regcache, void *buf)
|
||||||
{
|
{
|
||||||
int i, base;
|
int i, base;
|
||||||
char *regset = buf;
|
char *regset = (char *) buf;
|
||||||
|
|
||||||
if (!(ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC))
|
if (!(ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC))
|
||||||
return;
|
return;
|
||||||
@@ -493,7 +493,7 @@ static void
|
|||||||
ppc_store_vrregset (struct regcache *regcache, const void *buf)
|
ppc_store_vrregset (struct regcache *regcache, const void *buf)
|
||||||
{
|
{
|
||||||
int i, base;
|
int i, base;
|
||||||
const char *regset = buf;
|
const char *regset = (const char *) buf;
|
||||||
|
|
||||||
if (!(ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC))
|
if (!(ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC))
|
||||||
return;
|
return;
|
||||||
@@ -517,7 +517,7 @@ static void
|
|||||||
ppc_fill_evrregset (struct regcache *regcache, void *buf)
|
ppc_fill_evrregset (struct regcache *regcache, void *buf)
|
||||||
{
|
{
|
||||||
int i, ev0;
|
int i, ev0;
|
||||||
struct gdb_evrregset_t *regset = buf;
|
struct gdb_evrregset_t *regset = (struct gdb_evrregset_t *) buf;
|
||||||
|
|
||||||
if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE))
|
if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE))
|
||||||
return;
|
return;
|
||||||
@@ -534,7 +534,7 @@ static void
|
|||||||
ppc_store_evrregset (struct regcache *regcache, const void *buf)
|
ppc_store_evrregset (struct regcache *regcache, const void *buf)
|
||||||
{
|
{
|
||||||
int i, ev0;
|
int i, ev0;
|
||||||
const struct gdb_evrregset_t *regset = buf;
|
const struct gdb_evrregset_t *regset = (const struct gdb_evrregset_t *) buf;
|
||||||
|
|
||||||
if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE))
|
if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE))
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user