aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2006-12-05 22:35:13 +0000
committerEric Christopher <echristo@gcc.gnu.org>2006-12-05 22:35:13 +0000
commit29c08d7c90b5caf5baea45642fa12f065f868355 (patch)
tree7c519f9fcbecb3df8f29e62462b1c6b5dde3031a
parent762397797c7ad0027a174c3dded91b08c6e1fa58 (diff)
downloadgcc-29c08d7c90b5caf5baea45642fa12f065f868355.zip
gcc-29c08d7c90b5caf5baea45642fa12f065f868355.tar.gz
gcc-29c08d7c90b5caf5baea45642fa12f065f868355.tar.bz2
i386.c (x86_output_aligned_bss): Move out of COMMON_ASM_OP ifdef.
2006-12-05 Eric Christopher <echristo@apple.com> * config/i386/i386.c (x86_output_aligned_bss): Move out of COMMON_ASM_OP ifdef. From-SVN: r119560
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/i386.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 71d8243..3f098bf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
2006-12-05 Eric Christopher <echristo@apple.com>
+ * config/i386/i386.c (x86_output_aligned_bss): Move out
+ of COMMON_ASM_OP ifdef.
+
+2006-12-05 Eric Christopher <echristo@apple.com>
+
* config/darwin.h (DARWIN_EXTRA_SPECS): New.
(STARTFILE_SPEC): Use.
(DARWIN_DYLIB1_SPEC): New.
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index dd715b4..98652ae 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -2392,7 +2392,7 @@ x86_elf_aligned_common (FILE *file,
fprintf (file, ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",
size, align / BITS_PER_UNIT);
}
-
+#endif
/* Utility function for targets to use in implementing
ASM_OUTPUT_ALIGNED_BSS. */
@@ -2416,7 +2416,6 @@ x86_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
#endif /* ASM_DECLARE_OBJECT_NAME */
ASM_OUTPUT_SKIP (file, size ? size : 1);
}
-#endif
void
optimization_options (int level, int size ATTRIBUTE_UNUSED)