From 0197bf54a19f23c0bcb3fb2e38965db7f9434aaf Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Wed, 17 Nov 2010 15:56:41 +0000 Subject: value-prof.c (gimple_divmod_fixed_value_transform): Update the stmt. 2010-11-17 Richard Guenther * value-prof.c (gimple_divmod_fixed_value_transform): Update the stmt. (gimple_mod_pow2_value_transform): Likewise. (gimple_mod_subtract_transform): Likewise. From-SVN: r166871 --- gcc/ChangeLog | 7 +++++++ gcc/value-prof.c | 3 +++ 2 files changed, 10 insertions(+) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1a7bb1e..6018090 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ 2010-11-17 Richard Guenther + * value-prof.c (gimple_divmod_fixed_value_transform): Update + the stmt. + (gimple_mod_pow2_value_transform): Likewise. + (gimple_mod_subtract_transform): Likewise. + +2010-11-17 Richard Guenther + PR lto/46504 * gimple.c (gimple_register_canonical_type): Make sure to only make type leaders canonical types. diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 0710250..2b86e02 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -702,6 +702,7 @@ gimple_divmod_fixed_value_transform (gimple_stmt_iterator *si) } gimple_assign_set_rhs_from_tree (si, result); + update_stmt (gsi_stmt (*si)); return true; } @@ -851,6 +852,7 @@ gimple_mod_pow2_value_transform (gimple_stmt_iterator *si) result = gimple_mod_pow2 (stmt, prob, count, all); gimple_assign_set_rhs_from_tree (si, result); + update_stmt (gsi_stmt (*si)); return true; } @@ -1051,6 +1053,7 @@ gimple_mod_subtract_transform (gimple_stmt_iterator *si) result = gimple_mod_subtract (stmt, prob1, prob2, i, count1, count2, all); gimple_assign_set_rhs_from_tree (si, result); + update_stmt (gsi_stmt (*si)); return true; } -- cgit v1.1