From 78a47b1d2e0d7fc33dad3866446e5ddc2097e567 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Thu, 8 Jul 2004 06:14:19 +0000 Subject: [PATCH] * varasm.c (asm_output_bss): Don't declare unless BSS_SECTION_ASM_OP. From-SVN: r84269 --- gcc/ChangeLog | 2 ++ gcc/varasm.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 74463e757b7..15bf4adc016 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,6 @@ 2004-07-06 Jan Beulich + + * varasm.c (asm_output_bss): Don't declare unless BSS_SECTION_ASM_OP. * expmed.c (emit_store_flag): Also special-case double-word (in-)equality comparison against -1. diff --git a/gcc/varasm.c b/gcc/varasm.c index 95434b55ae8..65875e53acf 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -135,11 +135,11 @@ static void globalize_decl (tree); static void maybe_assemble_visibility (tree); static int in_named_entry_eq (const void *, const void *); static hashval_t in_named_entry_hash (const void *); +#ifdef BSS_SECTION_ASM_OP #ifdef ASM_OUTPUT_BSS static void asm_output_bss (FILE *, tree, const char *, unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT); #endif -#ifdef BSS_SECTION_ASM_OP #ifdef ASM_OUTPUT_ALIGNED_BSS static void asm_output_aligned_bss (FILE *, tree, const char *, unsigned HOST_WIDE_INT, int) -- 2.30.2