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/varasm.c | |
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/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index a10d954d0c6..9dcc3b442cf 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -834,7 +834,7 @@ bss_initializer_p (tree decl) /* Compute the alignment of variable specified by DECL. DONT_OUTPUT_DATA is from assemble_variable. */ -static void +void align_variable (tree decl, bool dont_output_data) { unsigned int align = DECL_ALIGN (decl); |