include/
[deliverable/binutils-gdb.git] / ld / emultempl / tic6xdsbt.em
index 87d3b3571f03a7e3a77466893522b1247bbfeca5..01923b3f159fed98b7d2fd63b81c465fd2e5f28c 100644 (file)
@@ -75,19 +75,19 @@ compare_output_sec_vma (const void *a, const void *b)
   asection *asec = *(asection **) a, *bsec = *(asection **) b;
   asection *aout = asec->output_section, *bout = bsec->output_section;
   bfd_vma avma, bvma;
-  
+
   /* If there's no output section for some reason, compare equal.  */
   if (!aout || !bout)
     return 0;
-  
+
   avma = aout->vma + asec->output_offset;
   bvma = bout->vma + bsec->output_offset;
-  
+
   if (avma > bvma)
     return 1;
   else if (avma < bvma)
     return -1;
-  
+
   return 0;
 }
 
@@ -109,10 +109,10 @@ gld${EMULATION_NAME}_after_allocation (void)
        {
          bfd *abfd = is->the_bfd;
          asection *sec;
-         
+
          if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
            continue;
-         
+
          for (sec = abfd->sections; sec != NULL; sec = sec->next)
            {
              asection *out_sec = sec->output_section;
@@ -128,7 +128,7 @@ gld${EMULATION_NAME}_after_allocation (void)
                  if (sec_count == list_size)
                    {
                      list_size *= 2;
-                     sec_list = (asection **) 
+                     sec_list = (asection **)
                           xrealloc (sec_list, list_size * sizeof (asection *));
                    }
 
@@ -136,13 +136,13 @@ gld${EMULATION_NAME}_after_allocation (void)
                }
            }
        }
-       
+
       qsort (sec_list, sec_count, sizeof (asection *), &compare_output_sec_vma);
-      
+
       if (elf32_tic6x_fix_exidx_coverage (sec_list, sec_count, &link_info,
                                           merge_exidx_entries))
        layout_changed = 1;
-      
+
       free (sec_list);
     }
 
This page took 0.024141 seconds and 4 git commands to generate.