summaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2012-06-17 21:12:24 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2012-06-17 21:12:24 +0000
commitca3f2950267c25a44aa73f8290b5fb407af81260 (patch)
treee814ff4111b16d31e2e72a0a4c64d66ee862eaf5 /gcc/output.h
parent172a84ffae1199c36f0c0c3ac5721f13808d2041 (diff)
output.h (split_double): Move prototype to rtl.h.
* output.h (split_double): Move prototype to rtl.h. (constructor_static_from_elts_p): Move prototype to tree.c. * rtl.h (split_double): Moved here from output.h. * tree.h (constructor_static_from_elts_p): Moved here from output.h. * final.c (split_double): Move from here ... * rtlanal.c (split_double): ... to here. * expr.c: Do not include output.h. From-SVN: r188714
Diffstat (limited to 'gcc/output.h')
-rw-r--r--gcc/output.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/output.h b/gcc/output.h
index 306fb1c2e59..dfd6e548c2c 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -132,10 +132,6 @@ extern int sprint_ul (char *, unsigned long);
extern void asm_fprintf (FILE *file, const char *p, ...)
ATTRIBUTE_ASM_FPRINTF(2, 3);
-/* Split up a CONST_DOUBLE or integer constant rtx into two rtx's for single
- words. */
-extern void split_double (rtx, rtx *, rtx *);
-
/* Return nonzero if this function has no function calls. */
extern int leaf_function_p (void);
@@ -292,13 +288,6 @@ extern void output_object_blocks (void);
extern void output_quoted_string (FILE *, const char *);
-/* Whether a constructor CTOR is a valid static constant initializer if all
- its elements are. This used to be internal to initializer_constant_valid_p
- and has been exposed to let other functions like categorize_ctor_elements
- evaluate the property while walking a constructor for other purposes. */
-
-extern bool constructor_static_from_elts_p (const_tree);
-
/* Output assembler code for constant EXP to FILE, with no label.
This includes the pseudo-op such as ".int" or ".byte", and a newline.
Assumes output_addressed_constants has been done on EXP already.