diff options
author | Jan Hubicka <jh@suse.cz> | 2006-07-13 22:49:34 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2006-07-13 20:49:34 +0000 |
commit | 88d03811f89e6e0b1f63bdc7f61d9380645b1adf (patch) | |
tree | df24029698d70c331756451ec077b8551bb844f7 /gcc/output.h | |
parent | 56dbe89df5a64529d4dffff48e2ed38d4c90aba7 (diff) | |
download | gcc-88d03811f89e6e0b1f63bdc7f61d9380645b1adf.zip gcc-88d03811f89e6e0b1f63bdc7f61d9380645b1adf.tar.gz gcc-88d03811f89e6e0b1f63bdc7f61d9380645b1adf.tar.bz2 |
cgraphunit.c (cgraph_varpool_analyze_pending_decls): Call align_variable.
* 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.
From-SVN: r115421
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 69f8378..6d518c4 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. */ |