X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fhppa-linux-tdep.c;h=4e8904866733b319afa86041336f53565ee89589;hb=ecd75fc8eed3bde86036141228074a20e55dcfc9;hp=e51fbcc634038f0e0e65767e77d2afed9969758e;hpb=8fbca658f0643a6c3d5b61840351ae70e5bf2db6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/hppa-linux-tdep.c b/gdb/hppa-linux-tdep.c index e51fbcc634..4e89048667 100644 --- a/gdb/hppa-linux-tdep.c +++ b/gdb/hppa-linux-tdep.c @@ -1,7 +1,6 @@ /* Target-dependent code for GNU/Linux running on PA-RISC, for GDB. - Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2011 - Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of GDB. @@ -99,7 +98,7 @@ insns_match_pattern (struct gdbarch *gdbarch, CORE_ADDR pc, for (i = 0; pattern[i].mask; i++) { - char buf[4]; + gdb_byte buf[4]; target_read_memory (npc, buf, 4); insn[i] = extract_unsigned_integer (buf, 4, byte_order); @@ -345,7 +344,7 @@ hppa_linux_find_global_pointer (struct gdbarch *gdbarch, if (faddr & 2) { int status; - char buf[4]; + gdb_byte buf[4]; faddr &= ~3; @@ -357,7 +356,7 @@ hppa_linux_find_global_pointer (struct gdbarch *gdbarch, /* If the address is in the plt section, then the real function hasn't yet been fixed up by the linker so we cannot determine the gp of that function. */ - if (in_plt_section (faddr, NULL)) + if (in_plt_section (faddr)) return 0; faddr_sect = find_pc_section (faddr); @@ -382,7 +381,7 @@ hppa_linux_find_global_pointer (struct gdbarch *gdbarch, { int status; LONGEST tag; - char buf[4]; + gdb_byte buf[4]; status = target_read_memory (addr, buf, sizeof (buf)); if (status != 0)