aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2005-08-03 21:13:12 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2005-08-03 21:13:12 +0000
commite81d37df02f7a483b5094f48695c9cf23d9a03cd (patch)
treea3f4f1648214d793f158023143655230a5e8d32d /gcc/config
parente0103440255421d071dcacd611f759b39f9c8398 (diff)
downloadgcc-e81d37df02f7a483b5094f48695c9cf23d9a03cd.zip
gcc-e81d37df02f7a483b5094f48695c9cf23d9a03cd.tar.gz
gcc-e81d37df02f7a483b5094f48695c9cf23d9a03cd.tar.bz2
* config/i386/i386.c (x86_elf_aligned_common)
(x86_output_aligned_bss): Don't try to use symbols that aren't defined. From-SVN: r102711
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/i386/i386.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 1b77760..9a8bb7f 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -1789,6 +1789,7 @@ x86_64_elf_unique_section (tree decl, int reloc)
default_unique_section (decl, reloc);
}
+#ifdef COMMON_ASM_OP
/* This says how to output assembler code to declare an
uninitialized external linkage data object.
@@ -1832,6 +1833,7 @@ 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)