aboutsummaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2014-01-20 20:13:10 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2014-01-20 20:13:10 +0000
commit99482090e5b3b3151c81298a4a2219d0cf1865fb (patch)
treedb2615a16f6b61ab095fdd49eee7b26e5fa6bdaf /gcc/varasm.c
parent66bc6a9ecc5cc4aba9473abdc54930dfdcb1358e (diff)
downloadgcc-99482090e5b3b3151c81298a4a2219d0cf1865fb.zip
gcc-99482090e5b3b3151c81298a4a2219d0cf1865fb.tar.gz
gcc-99482090e5b3b3151c81298a4a2219d0cf1865fb.tar.bz2
output.h (output_constant): Delete.
* output.h (output_constant): Delete. * varasm.c (output_constant): Make private. From-SVN: r206855
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r--gcc/varasm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index c975bfb..d46f008 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -117,8 +117,8 @@ static int compare_constant (const tree, const tree);
static tree copy_constant (tree);
static void output_constant_def_contents (rtx);
static void output_addressed_constants (tree);
-static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
-static unsigned min_align (unsigned, unsigned);
+static unsigned HOST_WIDE_INT output_constant (tree, unsigned HOST_WIDE_INT,
+ unsigned int);
static void globalize_decl (tree);
static bool decl_readonly_section_1 (enum section_category);
#ifdef BSS_SECTION_ASM_OP
@@ -4602,7 +4602,7 @@ static unsigned HOST_WIDE_INT
ALIGN is the alignment of the data in bits. */
-unsigned HOST_WIDE_INT
+static unsigned HOST_WIDE_INT
output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
{
enum tree_code code;