summaryrefslogtreecommitdiff
path: root/gcc/ipa-struct-reorg.c
diff options
context:
space:
mode:
authorolga <olga@138bc75d-0d04-0410-961f-82ee72b054a4>2007-10-24 21:49:27 +0000
committerolga <olga@138bc75d-0d04-0410-961f-82ee72b054a4>2007-10-24 21:49:27 +0000
commit1d8091f7252bfebd4ad504d42a5ee76f87cc8988 (patch)
tree086aadf1ae157c9f067ff097e509554bd3dcb00d /gcc/ipa-struct-reorg.c
parent3ecce66abcdd68e75607804bc9b15b67ce994fd5 (diff)
downloadgcc-1d8091f7252bfebd4ad504d42a5ee76f87cc8988.tar.gz
2007-10-24 Samuel Tardieu <sam@rfc1149.net>
Olga Golovanevsky <olga@il.ibm.com> * ipa-struct-reorg.c (replace_field_acc): Make it clear to the compiler that wr.wrap and wr.domain are initialized in any case. 2007-10-24 Samuel Tardieu <sam@rfc1149.net> * ipa-struct-reorg.c (sum_counts): Use HOST_WIDEST_PRINT_DEC to print gcov_type values. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129615 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-struct-reorg.c')
-rw-r--r--gcc/ipa-struct-reorg.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ipa-struct-reorg.c b/gcc/ipa-struct-reorg.c
index 9a04289f224..e4bc7faf292 100644
--- a/gcc/ipa-struct-reorg.c
+++ b/gcc/ipa-struct-reorg.c
@@ -957,18 +957,19 @@ replace_field_acc (struct field_access_site *acc, tree new_type)
tree new_acc;
tree field_id = DECL_NAME (acc->field_decl);
VEC (type_wrapper_t, heap) *wrapper = VEC_alloc (type_wrapper_t, heap, 10);
- type_wrapper_t wr;
type_wrapper_t *wr_p = NULL;
while (TREE_CODE (ref_var) == INDIRECT_REF
|| TREE_CODE (ref_var) == ARRAY_REF)
{
+ type_wrapper_t wr;
+
if ( TREE_CODE (ref_var) == INDIRECT_REF)
{
wr.wrap = 0;
wr.domain = 0;
}
- else if (TREE_CODE (ref_var) == ARRAY_REF)
+ else
{
wr.wrap = 1;
wr.domain = TREE_OPERAND (ref_var, 1);
@@ -3550,7 +3551,7 @@ sum_counts (d_str str, gcov_type *hotest)
{
fprintf (dump_file, "\nCounter of field \"");
print_generic_expr (dump_file, str->fields[i].decl, 0);
- fprintf (dump_file, "\" is " HOST_WIDE_INT_PRINT_DEC,
+ fprintf (dump_file, "\" is " HOST_WIDEST_INT_PRINT_DEC,
str->fields[i].count);
}
str->count += str->fields[i].count;
@@ -3560,7 +3561,7 @@ sum_counts (d_str str, gcov_type *hotest)
{
fprintf (dump_file, "\nCounter of struct \"");
print_generic_expr (dump_file, str->decl, 0);
- fprintf (dump_file, "\" is " HOST_WIDE_INT_PRINT_DEC, str->count);
+ fprintf (dump_file, "\" is " HOST_WIDEST_INT_PRINT_DEC, str->count);
}
if (str->count > *hotest)