From 04d542445cdf1d2455d1d61acd2fa7ebb2ff420c Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Wed, 13 Aug 2014 09:53:18 +0000 Subject: [PATCH] Fix some comments git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14267 --- coregrind/m_debuginfo/readelf.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/coregrind/m_debuginfo/readelf.c b/coregrind/m_debuginfo/readelf.c index 7cbe4c7b2a..27b7a6498a 100644 --- a/coregrind/m_debuginfo/readelf.c +++ b/coregrind/m_debuginfo/readelf.c @@ -687,22 +687,22 @@ Bool get_elf_symbol_info ( * of instructions between the function's global and local entry points. An * offset of 0 indicates that there is one entry point. The value must be: * - * 0 - one entry point, local and global are the same - * 1 - reserved - * 2 - local entry point is one instruction after the global entry point - * 3 - local entry point is two instructions after the global entry point - * 4 - local entry point is four instructions after the global entry point - * 5 - local entry point is eight instructions after the global entry point - * 6 - local entry point is sixteen two instructions after the global entry point - * 7 - reserved + * 0 - one entry point, local and global are the same + * 1 - reserved + * 2 - local entry point is one instruction after the global entry point + * 3 - local entry point is two instructions after the global entry point + * 4 - local entry point is four instructions after the global entry point + * 5 - local entry point is eight instructions after the global entry point + * 6 - local entry point is sixteen instructions after the global entry point + * 7 - reserved * - * The extract the three bit field from the other field. + * Extract the three bit field from the other field is done by: * (other_field & STO_PPC64_LOCAL_MASK) >> STO_PPC_LOCAL_BIT * * where the #define values are given in include/elf/powerpc.h file for * the PPC binutils. * - * coversion of the three bit field to bytes is given by + * conversion of the three bit field to bytes is given by * * ((1 << bit_field) >> 2) << 2 */ -- 2.47.2