aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Knuttila <krk@cygnus>1995-12-04 21:47:37 +0000
committerKim Knuttila <krk@cygnus>1995-12-04 21:47:37 +0000
commit545bf026d54e7e80a5559b3ed1101f7ea81e6f51 (patch)
tree553c10d2d2979fa75e5b4c1f0093f8436656cb89
parent4ac27a602f10a715c46a3af41dea6401d674136c (diff)
downloadgdb-545bf026d54e7e80a5559b3ed1101f7ea81e6f51.zip
gdb-545bf026d54e7e80a5559b3ed1101f7ea81e6f51.tar.gz
gdb-545bf026d54e7e80a5559b3ed1101f7ea81e6f51.tar.bz2
Removed some debugging prints. duh
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/coffcode.h5
2 files changed, 4 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 170e372..efe2186 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index d76882a..e0c4f17 100644
--- a/bfd/coffcode.h
+++ b/bfd/coffcode.h
@@ -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