]> sourceware.org Git - glibc.git/commitdiff
Pretty printing.
authorUlrich Drepper <drepper@redhat.com>
Thu, 17 Oct 2002 21:32:59 +0000 (21:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 17 Oct 2002 21:32:59 +0000 (21:32 +0000)
sysdeps/i386/dl-machine.h

index 5b9c24f5a8c081eec8061955829f944154223904..4aa07373f84203f0ddf2526c00abf52223ea682d 100644 (file)
@@ -201,7 +201,7 @@ _dl_runtime_profile:\n\
        .previous\n\
 ");
 # else
-# define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\n\
+#  define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\n\
        .text\n\
        .globl _dl_runtime_resolve\n\
        .globl _dl_runtime_profile\n\
@@ -389,7 +389,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
     return;
 # endif
   else
-#endif
+#endif /* !RTLD_BOOTSTRAP and have no -z combreloc */
     {
       const Elf32_Sym *const refsym = sym;
 #if defined USE_TLS && !defined RTLD_BOOTSTRAP
@@ -402,7 +402,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
       if (sym != NULL)
 # endif
        value += sym->st_value;
-#endif
+#endif /* use TLS and !RTLD_BOOTSTRAP */
 
       switch (r_type)
        {
@@ -497,7 +497,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
        default:
          _dl_reloc_bad_type (map, r_type, 0);
          break;
-#endif
+#endif /* !RTLD_BOOTSTRAP */
        }
     }
 }
@@ -521,7 +521,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
       Elf32_Addr value = RESOLVE (&sym, version, ELF32_R_TYPE (reloc->r_info));
       if (sym != NULL)
        value += sym->st_value;
-#endif
+# endif
 
       switch (ELF32_R_TYPE (reloc->r_info))
        {
@@ -534,7 +534,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
          *reloc_addr = (value + reloc->r_addend - (Elf32_Addr) reloc_addr);
          break;
 
-#ifdef USE_TLS
+# ifdef USE_TLS
        case R_386_TLS_DTPMOD32:
          /* Get the information from the link map returned by the
             resolv function.  */
@@ -567,7 +567,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
              + reloc->r_addend;
          CHECK_STATIC_TLS (map, sym_map);
          break;
-#endif /* use TLS */
+# endif        /* use TLS */
        default:
          /* We add these checks in the version to relocate ld.so only
             if we are still debugging.  */
@@ -576,7 +576,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
        }
     }
 }
-#endif
+#endif /* !RTLD_BOOTSTRAP */
 
 static inline void
 elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc,
@@ -593,7 +593,7 @@ elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
 {
   *reloc_addr = l_addr + reloc->r_addend;
 }
-#endif
+#endif /* !RTLD_BOOTSTRAP */
 
 static inline void
 elf_machine_lazy_rel (struct link_map *map,
@@ -622,6 +622,6 @@ elf_machine_lazy_rela (struct link_map *map,
 {
 }
 
-#endif
+#endif /* !RTLD_BOOTSTRAP */
 
 #endif /* RESOLVE */
This page took 0.039904 seconds and 5 git commands to generate.