summaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2012-06-17 21:12:24 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2012-06-17 21:12:24 +0000
commit21eb4639713d7e2e6d1216d7ac1c01541274e5ca (patch)
treee814ff4111b16d31e2e72a0a4c64d66ee862eaf5 /gcc/output.h
parent1fe976c3ec76a87fc91de682cd872632ec163946 (diff)
downloadgcc-21eb4639713d7e2e6d1216d7ac1c01541274e5ca.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188714 138bc75d-0d04-0410-961f-82ee72b054a4
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.