Removed some debugging prints. duh
authorKim Knuttila <krk@cygnus>
Mon, 4 Dec 1995 21:47:37 +0000 (21:47 +0000)
committerKim Knuttila <krk@cygnus>
Mon, 4 Dec 1995 21:47:37 +0000 (21:47 +0000)
bfd/ChangeLog
bfd/coffcode.h

index 170e372..efe2186 100644 (file)
@@ -1,3 +1,7 @@
+Mon Dec  4 16:40:47 1995  Kim Knuttila  <krk@cygnus.com>
+
+       * coffcode.h (coff_set_alignment_hook): Removed some debugging printf's
+
 Mon Dec  4 11:25:39 1995  Ian Lance Taylor  <ian@cygnus.com>
 
        * elflink.h (elf_link_output_extsym): Just ignore warning and
index d76882a..e0c4f17 100644 (file)
@@ -963,27 +963,22 @@ coff_set_alignment_hook (abfd, section, scnhdr)
 #ifdef POWERPC_LE_PE
   if (strcmp (section->name, ".idata$2") == 0)
     {
-      fprintf(stderr, "Setting alignment for .idata$4\n");
       section->alignment_power = 0;
     }
   else if (strcmp (section->name, ".idata$3") == 0)
     {
-      fprintf(stderr, "Setting alignment for .idata$4\n");
       section->alignment_power = 0;
     }
   else if (strcmp (section->name, ".idata$4") == 0)
     {
-      fprintf(stderr, "Setting alignment for .idata$4\n");
       section->alignment_power = 2;
     }
   else if (strcmp (section->name, ".idata$5") == 0)
     {
-      fprintf(stderr, "Setting alignment for .idata$5\n");
       section->alignment_power = 2;
     }
   else if (strcmp (section->name, ".idata$6") == 0)
     {
-      fprintf(stderr, "Setting alignment for .idata$6\n");
       section->alignment_power = 1;
     }
 #endif