Removed some debugging prints. duh

This commit is contained in:
Kim Knuttila 1995-12-04 21:47:37 +00:00
parent 4ac27a602f
commit 545bf026d5
2 changed files with 4 additions and 5 deletions

View 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

View 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