X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=gcc%2FChangeLog;h=3f99dc6f68bb9ad3e6498183a6f45947063fc324;hp=b1b5c12c4ac1166cc157968a96b2f7f2b3a887b9;hb=57ce0a9967fde78521c64d0273288de91579524a;hpb=c9b4a5144b237820d62573206473e33e13a03832 diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b1b5c12c4ac..3f99dc6f68b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,54 @@ +2010-12-08 Jakub Jelinek + + PR middle-end/46844 + * regrename.c (check_new_reg_p): Add ATTRIBUTE_UNUSED to reg + parameter. + +2010-12-08 Richard Earnshaw + + PR target/46631 + * arm.c (thumb2_reorg): Also try to reduce Rd, Rn, Rd + into a 16-bit instruction. + +2010-12-08 Michael Meissner + + PR middle-end/42694 + * builtins.c (expand_builtin_pow_root): Don't optimize pow(x,y) + where y is 0.25, 1./6., or 0.75 if the target does not have a sqrt + instruction, but do optimize if y is 0.5 or 1./3. since that + changes an expensive call into a cheaper one. + +2010-12-08 Richard Guenther + + * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Use a shift + instead of a division to divide by BITS_PER_UNIT. + +2010-12-08 Richard Guenther + + * gimplify.c (gimple_tree_eq): Assert hashes are equal only + when checking is enabled. + +2010-12-07 Andrey Belevantsev + + PR target/43603 + * haifa-sched.c (sched_create_recovery_edges): Update + dominator info. + * sel-sched-ir.c (maybe_tidy_empty_bb): Update dominator info + after deleting an empty block. + (tidy_control_flow): Also verify dominators. + (sel_remove_bb): Update dominator info after removing a block. + (sel_redirect_edge_and_branch_force): Assert that no unreachable + blocks will be created. Update dominator info. + (sel_redirect_edge_and_branch): Update dominator info when + basic blocks do not become unreachable. + (sel_remove_loop_preheader): Update dominator info. + +2010-12-07 Richard Guenther + + * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref): + Reset alignment information. + (bump_vector_ptr): Likewise. + 2010-12-07 John David Anglin PR middle-end/46671