aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2011-07-25 22:23:38 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2011-07-25 22:23:38 +0000
commitdea91a5c342ccd76b908e094a184ed2538c0f8c2 (patch)
tree47b917eb4f93e72cfc892120c32a3383ec908bbd /gdb
parent17a16b0f109f8663ff1e84a74dce5dee1707bf61 (diff)
downloadgdb-dea91a5c342ccd76b908e094a184ed2538c0f8c2.zip
gdb-dea91a5c342ccd76b908e094a184ed2538c0f8c2.tar.gz
gdb-dea91a5c342ccd76b908e094a184ed2538c0f8c2.tar.bz2
Cleanup: kill trailing whitespace
Diffstat (limited to 'gdb')
-rw-r--r--gdb/elfread.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/elfread.c b/gdb/elfread.c
index ab6dbe3..998a96e 100644
--- a/gdb/elfread.c
+++ b/gdb/elfread.c
@@ -285,7 +285,7 @@ elf_symtab_read (struct objfile *objfile, int type,
{
struct minimal_symbol *msym;
bfd *abfd = objfile->obfd;
- asection *sect;
+ asection *sect;
/* Symbol is a reference to a function defined in
a shared library.
@@ -375,7 +375,7 @@ elf_symtab_read (struct objfile *objfile, int type,
NOTE: uweigand-20071112: Synthetic symbols do not
have an ELF-private part, so do not touch those. */
- unsigned int shndx = type == ST_SYNTHETIC ? 0 :
+ unsigned int shndx = type == ST_SYNTHETIC ? 0 :
((elf_symbol_type *) sym)->internal_elf_sym.st_shndx;
switch (shndx)
@@ -481,7 +481,7 @@ elf_symtab_read (struct objfile *objfile, int type,
already includes one element, so we
need to allocate max_index aadditional
elements. */
- size = (sizeof (struct stab_section_info)
+ size = (sizeof (struct stab_section_info)
+ (sizeof (CORE_ADDR) * max_index));
sectinfo = (struct stab_section_info *)
xmalloc (size);
@@ -535,7 +535,7 @@ elf_symtab_read (struct objfile *objfile, int type,
else
{
/* FIXME: Solaris2 shared libraries include lots of
- odd "absolute" and "undefined" symbols, that play
+ odd "absolute" and "undefined" symbols, that play
hob with actions like finding what function the PC
is in. Ignore them if they aren't text, data, or bss. */
/* ms_type = mst_unknown; */
@@ -554,7 +554,7 @@ elf_symtab_read (struct objfile *objfile, int type,
ELF-private part. However, in some cases (e.g. synthetic
'dot' symbols on ppc64) the udata.p entry is set to point back
to the original ELF symbol it was derived from. Get the size
- from that symbol. */
+ from that symbol. */
if (type != ST_SYNTHETIC)
elf_sym = (elf_symbol_type *) sym;
else
@@ -562,7 +562,7 @@ elf_symtab_read (struct objfile *objfile, int type,
if (elf_sym)
MSYMBOL_SIZE(msym) = elf_sym->internal_elf_sym.st_size;
-
+
msym->filename = filesymname;
gdbarch_elf_make_msymbol_special (gdbarch, sym, msym);
}
@@ -903,7 +903,7 @@ elf_gnu_ifunc_resolve_name (const char *name, CORE_ADDR *addr_p)
{
if (elf_gnu_ifunc_resolve_by_cache (name, addr_p))
return 1;
-
+
if (elf_gnu_ifunc_resolve_by_got (name, addr_p))
return 1;
@@ -1201,7 +1201,7 @@ find_separate_debug_file_by_buildid (struct objfile *objfile)
}
/* Scan and build partial symbols for a symbol file.
- We have been initialized by a call to elf_symfile_init, which
+ We have been initialized by a call to elf_symfile_init, which
currently does nothing.
SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
@@ -1562,7 +1562,7 @@ elfstab_offset_sections (struct objfile *objfile, struct partial_symtab *pst)
/* Found it! Allocate a new psymtab struct, and fill it in. */
maybe->found++;
pst->section_offsets = (struct section_offsets *)
- obstack_alloc (&objfile->objfile_obstack,
+ obstack_alloc (&objfile->objfile_obstack,
SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
for (i = 0; i < maybe->num_sections; i++)
(pst->section_offsets)->offsets[i] = maybe->sections[i];