diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-07-13 20:49:34 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-07-13 20:49:34 +0000 |
commit | e3a1de9d9729f3bcef93c1483bffa9b2e6c5b6cd (patch) | |
tree | df24029698d70c331756451ec077b8551bb844f7 /gcc/output.h | |
parent | 538a21978e1d2487ecbc588e1339ee77de2ba1c5 (diff) | |
download | gcc-e3a1de9d9729f3bcef93c1483bffa9b2e6c5b6cd.tar.gz |
* cgraphunit.c (cgraph_varpool_analyze_pending_decls): Call align_variable.
* output.h (align_variable): Declare.
* varasm.c (align_variable): Export.
* value-prof.c (tree_value_profile_transformations): Recompute iterator
when basic block changed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115421 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/output.h b/gcc/output.h index 69f8378a0bc..6d518c45803 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -200,6 +200,10 @@ extern void assemble_end_function (tree, const char *); initial value (that will be done by the caller). */ extern void assemble_variable (tree, int, int, int); +/* Compute the alignment of variable specified by DECL. + DONT_OUTPUT_DATA is from assemble_variable. */ +extern void align_variable (tree decl, bool dont_output_data); + /* Output something to declare an external symbol to the assembler. (Most assemblers don't need this, so we normally output nothing.) Do nothing if DECL is not external. */ |