summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-12-20 16:24:12 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-12-20 16:27:43 +0100
commit1cf1b611788a34e65bbc14eb2ff0e5a243fa6045 (patch)
tree80e9ff3e723c646eccd5b66321ab44213022a9f2 /ldso
parent35556e0803a874b946e4f5f83727a3c38f6563bb (diff)
ldso: ARC: tweak whitespace some more
Use spaces instead of tabs in the table to accomodate different tab settings. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'ldso')
-rw-r--r--ldso/ldso/arc/dl-sysdep.h72
-rw-r--r--ldso/ldso/arc/elfinterp.c4
2 files changed, 38 insertions, 38 deletions
diff --git a/ldso/ldso/arc/dl-sysdep.h b/ldso/ldso/arc/dl-sysdep.h
index 6e2e47c0d..97ce28492 100644
--- a/ldso/ldso/arc/dl-sysdep.h
+++ b/ldso/ldso/arc/dl-sysdep.h
@@ -14,43 +14,43 @@
/*
* Dynamic Linking ABI for ARCompact ISA
*
- * PLT
- * --------------------------------
- * | ld r11, [pcl, off-to-GOT[1] | 0 (20 bytes)
- * | | 4
- * plt0 | ld r10, [pcl, off-to-GOT[2] | 8
- * | | 12
- * | j [r10] | 16
- * --------------------------------
- * | Base address of GOT | 20
- * --------------------------------
- * | ld r12, [pcl, off-to-GOT[3] | 24 (12 bytes each)
- * plt1 | |
- * | j_s.d [r12] | 32
- * | mov_s r12, pcl | 34
- * --------------------------------
- * | | 36
- * ~ ~
- * ~ ~
- * | |
- * --------------------------------
+ * PLT
+ * --------------------------------
+ * | ld r11, [pcl, off-to-GOT[1] | 0 (20 bytes)
+ * | | 4
+ * plt0 | ld r10, [pcl, off-to-GOT[2] | 8
+ * | | 12
+ * | j [r10] | 16
+ * --------------------------------
+ * | Base address of GOT | 20
+ * --------------------------------
+ * | ld r12, [pcl, off-to-GOT[3] | 24 (12 bytes each)
+ * plt1 | |
+ * | j_s.d [r12] | 32
+ * | mov_s r12, pcl | 34
+ * --------------------------------
+ * | | 36
+ * ~ ~
+ * ~ ~
+ * | |
+ * --------------------------------
*
- * GOT
- * --------------
- * | [0] |
- * --------------
- * | [1] | Module info - setup by ldso
- * --------------
- * | [2] | resolver entry point
- * --------------
- * | [3] |
- * | ... | Runtime address for function symbols
- * | [f] |
- * --------------
- * | [f+1] |
- * | ... | Runtime address for data symbols
- * | [last] |
- * --------------
+ * GOT
+ * --------------
+ * | [0] |
+ * --------------
+ * | [1] | Module info - setup by ldso
+ * --------------
+ * | [2] | resolver entry point
+ * --------------
+ * | [3] |
+ * | ... | Runtime address for function symbols
+ * | [f] |
+ * --------------
+ * | [f+1] |
+ * | ... | Runtime address for data symbols
+ * | [last] |
+ * --------------
*/
/*
diff --git a/ldso/ldso/arc/elfinterp.c b/ldso/ldso/arc/elfinterp.c
index 1d4481c6f..ca0d2c16f 100644
--- a/ldso/ldso/arc/elfinterp.c
+++ b/ldso/ldso/arc/elfinterp.c
@@ -59,7 +59,7 @@ _dl_linux_resolver(struct elf_resolve *tpnt, unsigned int plt_pc)
#if defined __SUPPORT_LD_DEBUG__
if (_dl_debug_bindings) {
_dl_dprintf(_dl_debug_file, "\nresolve function: %s", symname);
- if(_dl_debug_detail)
+ if (_dl_debug_detail)
_dl_dprintf(_dl_debug_file, "\n\tpatched %x ==> %pc @ %pl\n",
*got_addr, new_addr, got_addr);
}
@@ -182,7 +182,7 @@ _dl_do_lazy_reloc(struct elf_resolve *tpnt, struct r_scope_elem *scope,
}
#if defined __SUPPORT_LD_DEBUG__
- if(_dl_debug_reloc && _dl_debug_detail)
+ if (_dl_debug_reloc && _dl_debug_detail)
_dl_dprintf(_dl_debug_file, "\tpatched: %lx ==> %lx @ %pl\n",
old_val, *reloc_addr, reloc_addr);
#endif