X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2FChangeLog;h=ac76ef869bd0cf24dc6413f40ad23fb85e02ff56;hb=a8d20b4886e0feb5557c353846f49df6c1ad5682;hp=27e196ec147ff3a9ee6c2cf4f7c34e1126327330;hpb=1f2e8f6efd79a031490029ed23a21c6dcd4ce058;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 27e196ec147..ac76ef869bd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,78 @@ +2012-02-28 Thomas Koenig + + PR tree-optimization/53207 + * doc/invoke.texi: Document as experimental and relying on graphite. + +2012-02-28 Georg-Johann Lay + + * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part + of initializer to changes from r184614. + +2012-02-28 Richard Guenther + + PR tree-optimization/52395 + * tree-sra.c (build_ref_for_offset): Also look at the base + TYPE_ALIGN when figuring out the alignment of the replacement. + +2012-02-28 Richard Guenther + + PR tree-optimization/52402 + * ipa-prop.c (ipa_modify_call_arguments): Properly use + mis-aligned types when creating the accesses at the call site. + +2012-02-28 Georg-Johann Lay + + * config/avr/builtins.def: New file. + * config/avr/t-avr (avr.o, avr-c.o): Depend on it. + * config/avr/avr.c (enum avr_builtin_id): Use it. + (avr_init_builtins): Use it. And use avr_bdesc. + (bdesc_1arg): Remove. + (bdesc_2arg): Remove. + (bdesc_3arg): Remove. + (struct avr_builtin_description): Add field n_args. + (avr_bdesc): New static variable using builtins.def. + (avr_expand_builtin): Use it. + Don't call avr_expand_delay_cycles if op0 is not CONST_INT. + (avr_fold_builtin): Fold AVR_BUILTIN_SWAP. + Don't fold AVR_BUILTIN_INSERT_BITS if arg0 is not INTEGER_CST. + +2012-02-28 Georg-Johann Lay + + PR target/52148 + * config/avr/avr.md (movmem_): Replace match_operand that + match only one single hard register with respective hard reg rtx. + (movmemx_): Ditto. + * config/avr/avr.c (avr_emit_movmemhi): Adapt expanding to new + insn anatomy of movmem[x]_. + (avr_out_movmem): Same for printing assembler and operand usage. + +2012-02-28 Georg-Johann Lay + + PR target/49868 + PR target/52261 + * doc/extend.texi (AVR Named Address Spaces): No more try to fix + address spaces located outside of device flash. + + * config/avr/avr.h (base_arch_s): Remove field n_segments. + (mcu_type_s): Add field n_flash. + * config/avr/avr-devices.c (avr_arch_types): Remove .n_segments. + Set .have_elpm and .have_elpmx to 1 for avrxmega4 and avrxmega5. + (AVR_MCU): Add N_FLASH argument. + * config/avr/avr-mcus.def (AVR_MCU): Add initializer for .n_flash. + * config/avr/avr-c.c (avr_cpu_cpp_builtins): Only define built-in + macro __FLASH if that address space makes sense for the device. + * config/avr/avr.c (avr_out_lpm): Don't try to fix address spaces + outside of target flash. + (avr_asm_named_section): Ditto. + (avr_asm_select_section): Ditto. + (avr_addr_space_convert): Ditto. + (avr_emit_movmemhi): Ditto. + (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Error if + address space is outside of device flash. + (avr_insert_attributes): Ditto. + (avr_xload_libgcc_p): Use avr_current_device->n_flash instead of + avr_current_arch->n_segments. + 2012-02-27 H.J. Lu PR target/52352