aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@gcc.gnu.org>2010-04-28 19:17:45 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2010-04-28 19:17:45 +0000
commit20225a9bec9f9fa4813cf52fc34213c952ac1831 (patch)
tree68127e754ffa737ab33c343f43092c217e3c20f9
parent8478130d94af3313c5c8a8c3e1d5a8033e949750 (diff)
downloadgcc-20225a9bec9f9fa4813cf52fc34213c952ac1831.zip
gcc-20225a9bec9f9fa4813cf52fc34213c952ac1831.tar.gz
gcc-20225a9bec9f9fa4813cf52fc34213c952ac1831.tar.bz2
Fix nits
From-SVN: r158839
-rw-r--r--gcc/ChangeLog16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2dffe7d..ca56821 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,17 +1,17 @@
2010-04-28 Eric Botcazou <ebotcazou@adacore.com>
Uniquization of constants at the Tree level
- * tree.h (DECL_IN_CONSTANT_POOL): New macro
+ * tree.h (DECL_IN_CONSTANT_POOL): New macro.
(tree_decl_with_vis): Add in_constant_pool bit, move shadowed_for_var_p
bit to the end.
(tree_output_constant_def): Declare.
- * gimplify.c (gimplify_init_constructor): When using block copy,
+ * gimplify.c (gimplify_init_constructor): When using block copy, first
uniquize the constant constructor on the RHS.
- * lto-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Deal
- with DECL_IN_CONSTANT_POOL flag.
+ * lto-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Deal with
+ DECL_IN_CONSTANT_POOL flag.
* lto-streamer-out.c (pack_ts_decl_with_vis_value_fields): Likewise.
- * varasm.c (make_decl_rtl): Deal with variables belonging to the
- global constant pool.
+ * varasm.c (make_decl_rtl): Deal with variables belonging to the global
+ constant pool.
(assemble_variable): Deal with symbols belonging to the tree constant
pool.
(get_constant_section): Add ALIGN parameter and simplify.
@@ -20,8 +20,8 @@
(output_constant_def_contents): Use the alignment of the VAR_DECL.
(tree_output_constant_def): New global function.
(mark_constant): Use the expression of the VAR_DECL.
- (place_block_symbol): Use the alignment of the VAR_DECL and the size
- of its expression.
+ (place_block_symbol): Use the alignment of the VAR_DECL and the size of
+ its expression.
(output_object_block): Likewise and assemble the expression.
2010-04-28 Eric Botcazou <ebotcazou@adacore.com>