OSDN Git Service

PR middle-end/38584
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
index 581efad..87d22b4 100644 (file)
@@ -1,3 +1,215 @@
+2008-12-30  Steven Bosscher  <steven@gcc.gnu.org>
+
+       PR middle-end/38584
+       * ipa-inline.c (compute_inline_parameters): When not optimizing,
+       don't compute the inline parameters, just set them to 0 instead.
+
+2008-12-30  Paolo Bonzini  <bonzini@gnu.org>
+
+       PR tree-optimization/38572
+       * tree-vrp.c (vrp_visit_phi_node): Look out for invalid ranges
+       and change them to VARYING.
+
+2008-12-30  Richard Guenther  <rguenther@suse.de>
+
+       PR middle-end/38564
+       * fold-const.c (fold_comparison): Use the correct result type.
+
+2008-12-30  Dorit Nuzman  <dorit@il.ibm.com>
+            Ira Rosen  <irar@il.ibm.com>
+
+       PR tree-optimization/38529
+       * tree-vect-transform (vect_transform_stmt): Handle inner-loop stmts
+       whose DEF is used in the loop-nest that is being vectorized, but
+       outside the immediately enclosing loop.
+
+2008-12-29  Seongbae Park  <seongbae.park@gmail.com>
+
+       * tree-profile.c (tree_init_ic_make_global_vars): Make static
+       variables TLS.
+
+2008-12-29  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/36191
+       * tree-complex.c (expand_complex_libcall): Call
+       maybe_clean_or_replace_eh_stmt and gimple_purge_dead_eh_edges
+       instead of passing true as 3rd argument to gsi_replace.
+
+2008-12-28  Uros Bizjak  <ubizjak@gmail.com>
+
+       PR middle-end/38652
+       * dse.c: Include target.h.
+       * Makefile.in (dse.o): Depend on $(TARGET_H).
+
+2008-12-29  Jakub Jelinek  <jakub@redhat.com>
+
+       PR driver/38381
+       * gcc.c (process_command): Accept also -b with configuration name
+       in the next argument.
+       * doc/invoke.texi (-b): Document that no hyphen is required if
+       configuration name is in the next argument after -b.
+
+2008-12-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/38641
+       * gimple-pretty-print.c (dump_binary_rhs): Print
+       VEC_WIDEN_MULT_HI_EXPR, VEC_WIDEN_MULT_LO_EXPR,
+       VEC_PACK_TRUNC_EXPR, VEC_PACK_SAT_EXPR, VEC_PACK_FIX_TRUNC_EXPR,
+       VEC_EXTRACT_EVEN_EXPR, VEC_EXTRACT_ODD_EXPR
+       VEC_INTERLEAVE_HIGH_EXPR and VEC_INTERLEAVE_LOW_EXPR similarly
+       to COMPLEX_EXPR, MIN_EXPR and MAX_EXPR.
+
+       PR middle-end/38633
+       * tree-cfg.c (replace_block_vars_by_duplicates): Only call
+       replace_by_duplicate_decl for VAR_DECLs or CONST_DECLs.
+
+2008-12-24  Kazu Hirata  <kazu@codesourcery.com>
+
+       * Makefile.in (GTFILES): Add $(srcdir)/expr.h.
+       * expr.h: Fix the declaration of block_clear_fn.
+
+2008-12-23  Andrew Pinski  <pinski@gmail.com>
+
+       PR middle-end/38590
+       * fold-const.c (fold_binary): Call fold_convert on arguments to
+       fold_build2 for negative divide optimization.
+
+2008-12-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/31150
+       * dse.c (struct store_info): Add const_rhs field.
+       (clear_rhs_from_active_local_stores): Clear also const_rhs.
+       (record_store): Try also cselib_expand_value_rtx to get a constant.
+       (find_shift_sequence, get_stored_val): Use const_rhs instead of
+       rhs if worthwhile.
+       * cselib.c (cselib_record_sets): If !cselib_record_memory and
+       there is just one set from read-only MEM, look at REG_EQUAL or
+       REG_EQUIV note.
+
+       * dse.c (struct store_info): Add redundant_reason field.
+       (record_store): When storing the same constant as has been stored by
+       an earlier store, set redundant_reason field to the earlier store's
+       insn_info_t.  Don't delete cannot_delete insns.
+       (find_shift_sequence): Remove read_info argument, add read_mode
+       and require_cst arguments.  Return early if require_cst and
+       constant wouldn't be returned.
+       (get_stored_val): New function.
+       (replace_read): Use it.
+       (scan_insn): Put even cannot_delete insns with exactly 1 store
+       into active_local_stores.
+       (dse_step1): Don't delete cannot_delete insns.  Remove redundant
+       constant stores if contains_cselib_groups and earlier store storing
+       the same value hasn't been eliminated.
+       (dse_step6): Renamed to dse_step7.  New function.
+       (dse_step7): Renamed from dse_step6.
+       (rest_of_handle_dse): Call dse_step6 and dse_step7 at the end.
+       * cselib.c (cselib_expand_value_rtx): Don't wrap CONST_INTs
+       into CONST unless really necessary.  Handle SUBREG, unary,
+       ternary, bitfield and compares specially, to be able to simplify
+       operations on constants.
+       (expand_loc): Try to optimize LO_SUM.
+
+       * dse.c (get_call_args): New function.
+       (scan_insn): Don't handle BUILT_IN_BZERO.  For memset, attempt
+       to get call arguments and if successful and both len and val are
+       constants, handle the call as (mem:BLK) (const_int) store.
+
+       * dse.c (struct store_info): Add is_large bool field, change
+       positions_needed into a union of a bitmask and bitmap + count.
+       (free_store_info): Free bitmap if is_large.
+       (set_usage_bits): Don't look at stores where
+       offset + width >= MAX_OFFSET.
+       (set_position_unneeded, set_all_positions_unneeded,
+       any_positions_needed_p, all_positions_needed_p): New static inline
+       functions.
+       (record_store): Handle BLKmode stores of CONST_INT, if
+       MEM_SIZE is set on the MEM.  Use the new positions_needed
+       accessor inlines.
+       (replace_read): Handle reads from BLKmode CONST_INT stores.
+       (check_mem_read_rtx): Use all_positions_needed_p function.
+       (dse_step1): Free large positions_needed bitmaps and clear is_large.
+
+       * dse.c (struct store_info): Change begin and end types to
+       HOST_WIDE_INT.
+
+       * dse.c (record_store): Fix check for unused store.
+
+       * expr.c (block_clear_fn): No longer static.
+       * expr.h (block_clear_fn): Declare.
+       * dse.c (scan_insn): Memset and bzero can just read their arguments.
+
+       * config/i386/i386.c (expand_setmem_via_rep_stos): Add ORIG_VALUE
+       argument.  If ORIG_VALUE is const0_rtx and COUNT is constant,
+       set MEM_SIZE on DESTMEM.
+       (ix86_expand_setmem): Adjust callers.
+
+       PR target/38488
+       * expr.h (get_mem_align_offset): New prototype.
+       * emit-rtl.c (get_mem_align_offset): New function.
+       * config/i386/i386.c (expand_movmem_via_rep_mov): Set MEM_SIZE
+       correctly.
+       (expand_constant_movmem_prologue, expand_constant_setmem_prologue):
+       New functions.
+       (ix86_expand_movmem): Optimize if COUNT_EXP
+       is constant, desired_align > align and dst & (desired_align - 1)
+       is computable at compile time.
+       (ix86_expand_setmem): Likewise.
+
+       * builtins.c (get_memory_rtx): Try to derive MEM_ATTRS from not yet
+       resolved SAVE_EXPR or POINTER_PLUS_EXPR.
+
+2008-12-22  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/alpha/elf.h (ASM_OUTPUT_EXTERNAL): New macro.
+
+       PR target/34571
+       * config/alpha/predicates.md (symbolic_operand): Return 1 for a
+       label_ref with an offset.
+
+2008-12-21  Andrew Pinski  <pinskia@gmail.com>
+
+       PR target/38300
+       * configure: Regenerate.
+
+2008-12-21  Richard Sandiford  <rdsandiford@googlemail.com>
+
+       * config/mips/mips-dsp.md (mips_lbux): Turn into a define_expand,
+       changing operand 1 to a pmode_register_operand.
+       (mips_lhx, mips_lwx): Likewise.
+       (mips_lbux_<mode>, mips_lhx_<mode>, mips_lwx_<mode>): New patterns.
+       * config/mips/mips.c (mips_prepare_builtin_arg): Get the mode of
+       the value from the argument expression.
+
+2008-12-21  Jan Hubicka  <jh@suse.cz>
+           Kai Tietz <kai.tietz@onevision.com>
+
+       * i386.md (UNSPEC_MS_TO_SYSV_CALL): New constant.
+       (call_1_rex64_ms_sysv, call_value_0_rex64_ms_sysv,
+       call_value_1_rex64_ms_sysv): New patterns.
+       * i386.c (function_arg_ms_64): Pass magical value of -2 as callarg.
+       (ix86_expand_call): Emit extra clobbers for ms->sysv ABI calls.
+
+2008-12-21  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/alpha/alpha.c (alpha_pad_noreturn): New static function.
+       (alpha_reorg): Call alpha_pad_noreturn.
+
+2008-12-21  Denis Chertykov  <denisc@overta.ru>
+
+       * config/avr/avr.md ("andsi3"): Fix wrong cc attribute.
+
+2008-12-20  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR target/37610
+       * configure.ac (gcc_cv_as_cfi_advance_working): Fall back to 'no'
+       if readelf is nowhere to be found.
+       * configure: Regenerate.
+
+2008-12-19  Andrew Haley  <aph@redhat.com>
+
+       * builtins.c, tree-ssa-loop-ivopts.c, fixed-value.c:
+       Fix comments.
+
 2008-12-19  Richard Earnshaw  <rearnsha@arm.com>
 
        PR target/38548
 
 2008-12-19  Steve Ellcey  <sje@cup.hp.com>
 
-       * df-scan.c ( df_hard_reg_init): Move declaration of i.
+       * df-scan.c (df_hard_reg_init): Move declaration of i.
 
 2008-12-19  Jakub Jelinek  <jakub@redhat.com>
 
        (df_scan_start_dump, df_get_call_refs, df_hard_reg_init): Rename
        df_invalidated_by_call to invalidated_by_call_regset.
        * df.h (df_invalidated_by_call): Remove.
-       * regclass.c (regs_invalidated_by_call_regset, persistent_obstack): New
-       variables.
+       * regclass.c (regs_invalidated_by_call_regset, persistent_obstack):
+       New variables.
        (init_reg_sets_1): Initialize regs_invalidated_by_call_regset.
        (globalize_reg): Likewise.
        * df-problems.c (df_rd_local_compute, df_lr_confluence_n,
 2008-12-18  Jan Hubicka  <jh@suse.cz>
            Kai Tietz <kai.tietz@onevision.com>
 
-       * i386.h (CONDITIONAL_REGISTER_USAGE): Initialize for current function
-       ABI.
+       * i386.h (CONDITIONAL_REGISTER_USAGE): Initialize for current
+       function ABI.
        * i386.c (ix86_call_abi_override): Do not trigger target re-init and
        do not try to modify call used regs.
        (ix86_maybe_switch_abi): New function.
        (dse_step1): Added regs_live bitmap and initialize it.
        (rest_of_handle_dse): Added DF_NOTES problem and earlier call to
        df_analyze.
-       * df-problems.c Renamed to 
-       df_simulate_initialize_backwards.
-       (df_simulate_one_insn): Renamed to
-       df_simulate_one_insn_backwards.
-       (df_simulate_artificial_refs_at_top): Renamed to 
+       * df-problems.c Renamed to df_simulate_initialize_backwards.
+       (df_simulate_one_insn): Renamed to df_simulate_one_insn_backwards.
+       (df_simulate_artificial_refs_at_top): Renamed to
        df_simulate_finalize_backwards.
-       (df_simulate_initialized_forwards,
-       df_simulate_one_insn_forwards,
+       (df_simulate_initialized_forwards, df_simulate_one_insn_forwards,
        df_simulate_finalize_backwards): New functions.
-       * df.h (df_simulate_artificial_refs_at_end): Renamed to 
+       * df.h (df_simulate_artificial_refs_at_end): Renamed to
        df_simulate_initialize_backwards.
-       (df_simulate_one_insn): Renamed to
-       df_simulate_one_insn_backwards.
-       (df_simulate_artificial_refs_at_top): Renamed to 
+       (df_simulate_one_insn): Renamed to df_simulate_one_insn_backwards.
+       (df_simulate_artificial_refs_at_top): Renamed to
        df_simulate_finalize_backwards.
-       (df_simulate_initialized_forwards,
-       df_simulate_one_insn_forwards,
+       (df_simulate_initialized_forwards, df_simulate_one_insn_forwards,
        df_simulate_finalize_backwards): New functions.
        * ra-conflict.c (global_conflicts): Renamed
        df_simulate_artificial_refs_at_end to
 
 2008-12-17  Sebastian Pop  <sebastian.pop@amd.com>
 
-        * doc/install.texi (Prerequisites): Document PPL and CLooG-PPL
-        dependences and the configure options.
-        (Configuration): Document --with-cloog, --with-ppl, --with-cloog-lib,
-         --with-ppl-lib, --with-cloog-incude, --with-ppl-include.
+       * doc/install.texi (Prerequisites): Document PPL and CLooG-PPL
+       dependences and the configure options.
+       (Configuration): Document --with-cloog, --with-ppl, --with-cloog-lib,
+       --with-ppl-lib, --with-cloog-incude, --with-ppl-include.
 
 2008-12-17  H.J. Lu  <hongjiu.lu@intel.com>
 
        asm and change the signature of brev and byteSwap functions to use
        unsigned values.
        * config/picochip/picochip.md (commsTestPort): This is a complex
-       instruction and should not be vliwed. Dont set insn type.
+       instruction and should not be vliwed. Don't set insn type.
 
 2008-12-15  Wolfgang Gellerich  <gellerich@de.ibm.com>
        * config/s390/s390.c (s390_swap_cmp): New function.
        for the milli.a library.
 
 2008-12-12  Andrew Pinski  <andrew_pinskia@playstation.sony.com>
-            Peter Bergner <bergner@vnet.ibm.com>
+           Peter Bergner <bergner@vnet.ibm.com>
 
        PR target/24779
        * config/rs6000/rs6000.md (call_indirect_aix32): Move the load of the
        * config/mips/linux.h (LINUX_DRIVER_SELF_SPECS): New.
        (BASE_DRIVER_SELF_SPECS): Remove.
        (DRIVER_SELF_SPECS): New definition.
-       * config/mips/elfoabi.h: (DRIVER_SELF_SPECS): Include
+       * config/mips/elfoabi.h (DRIVER_SELF_SPECS): Include
        BASE_DRIVER_SELF_SPECS.
        * config/mips/sde.h: Likewise.
        * config/mips/iris6.h: Likewise.
 2008-10-29  Steve Ellcey  <sje@cup.hp.com>
 
        PR target/32277
-       * libgcov.c ( __gcov_indirect_call_profiler): Check
+       * libgcov.c (__gcov_indirect_call_profiler): Check
        TARGET_VTABLE_USES_DESCRIPTORS.
 
 2008-10-29  Stefan Schulze Frielinghaus  <xxschulz@de.ibm.com>
 
 2008-10-15  Andreas Krebbel  <krebbel1@de.ibm.com>
 
-       * config/s390/s390.h: (TARGET_DFP): This requires TARGET_HARD_FLOAT.
+       * config/s390/s390.h (TARGET_DFP): This requires TARGET_HARD_FLOAT.
        * config/s390/s390.md: Replace "TARGET_HARD_FLOAT &&
        TARGET_(HARD_)DFP" with only TARGET_(HARD_)DFP since this
        already implies hard float.  Also fix several insn condition
 2008-10-11  Kenneth Zadeck <zadeck@naturalbridge.com>
 
        PR rtl-optimization/37448
-       * df.h: (df_ref_class): New enum.
+       * df.h (df_ref_class): New enum.
        (DF_REF_TYPE_NAMES, df_ref_extract): Removed.
        (struct df_ref): Replaced with union df_ref_d.
        (df_base_ref, df_artificial_ref, df_regular_ref, df_extract_ref):
        * config/rs6000/rs6000.c (rs6000_parse_fpu_option): Interpret
        -mfpu options.
        (rs6000_handle_option): Process -mfpu options.
-       * config/rs6000/rs6000.h: (TARGET_XILINX_FPU): New.
+       * config/rs6000/rs6000.h (TARGET_XILINX_FPU): New.
        (enum fpu_type_t): New.
        * config/rs6000/rs6000.md (attr fp_type): New.  Include xfpu.md.
        (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3, trunctfdf2): Set
        (floatdidf2): Add TARGET_SINGLE_FPU condition.
        * config/rs6000/rs6000.opt (-mfpu): New.
        (-mxilinx-fpu): New.
-       * config/rs6000/sysv4.h: (DRIVER_SELF_SPECS): New.
+       * config/rs6000/sysv4.h (DRIVER_SELF_SPECS): New.
        * config/rs6000/xfpu.h: New. Define TARGET_XILINX_FPU.
        * config/rs6000/xfpu.md: New. Define Xilinx pipeline.
        * gcc/config.gcc: powerpc-xilinx-eabi target: New.
 2008-10-02  Danny Smith  <dannysmith@users.sourceforge.net>
 
        PR target/37528
-       * config/i386/mingw32.h (LIBGCC_SPEC) : Replace with ..
+       * config/i386/mingw32.h (LIBGCC_SPEC): Replace with ..
        (REAL_LIBGCC_SPEC): New.  Always include -lgcc.
 
 2008-10-01  Andrew Pinski  <andrew_pinski@playstation.sony.com>
        PR target/36609
        * config/avr/avr.c (avr_reorg): Create RTL for reversed compare with
        zero.
-       * config/avr/avr.md  (QISI) : Define mode iterator.
-       (negated_tst<mode>) : Redefine as split using mode macro.
+       * config/avr/avr.md  (QISI): Define mode iterator.
+       (negated_tst<mode>): Redefine as split using mode macro.
        (reversed_tstqi): Define insn as reversed compare with zero.
        (reversed_tsthi): Ditto.
        (reversed_tstsi): Ditto.
 
        Improved branch hints, safe hints, and scheduling.
 
-       * haifa-sched.c (sched_emit_insn) : Define.
-       * sched-int.h (sched_emit_insn) : Add prototype.
+       * haifa-sched.c (sched_emit_insn): Define.
+       * sched-int.h (sched_emit_insn): Add prototype.
        * doc/invoke.texi (-mdual-nops, -mhint-max-nops,
-       -mhint-max-distance -msafe-hints) : Document.
+       -mhint-max-distance -msafe-hints): Document.
        * config/spu/spu.c (spu_flag_var_tracking): New.
        (TARGET_SCHED_INIT_GLOBAL, TARGET_SCHED_INIT,
        TARGET_SCHED_REORDER, TARGET_SCHED_REORDER2,
        (haifa_luid_for_non_insn): New static function.
        (init_before_recovery): Use haifa_init_only_bb instead of add_block.
        (increase_insn_priority): New.
-       * modulo-sched.c: (issue_rate): Remove static declaration.
+       * modulo-sched.c (issue_rate): Remove static declaration.
        (sms_sched_info): Change type to haifa_sched_info.
        (sms_sched_deps_info, sms_common_sched_info): New variables.
        (setup_sched_infos): New.
        TI_CURRENT_OPTION_PRAGMA.
        (current_target_pragma): Rename from current_option_pragma.
 
-       * target.h: (struct target_option): Delete booleans for changing
+       * target.h (struct target_option): Delete booleans for changing
        the optimization level on hot/cold functions.  Change signature of
        pragma_parse hook to take a second tree.
 
        * tree-vectorizer.h (supportable_widening_operation): Add two
        arguments.
        (supportable_narrowing_operation): Likewise.
-       * tree-vect-patterns.c (vect_recog_widen_mult_pattern) : Call
+       * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Call
        supportable_widening_operation with correct arguments.
        * tree-vect-transform.c (vectorizable_conversion): Likewise.
        (vectorizable_type_demotion): Support double type conversions.
 2008-08-06  Michael Matz  <matz@suse.de>
 
        * Makefile.in (write_entries_to_file): Quote words.
-       * gengtype.c: (read_input_line): Skip over leading white-space.
+       * gengtype.c (read_input_line): Skip over leading white-space.
 
 2008-08-06  Marc Gauthier  <marc@tensilica.com>
 
 2008-07-14  Andreas Krebbel  <krebbel1@de.ibm.com>
 
        PR target/36745
-       * config/s390/s390.c: (s390_secondary_reload): Add a secondary
+       * config/s390/s390.c (s390_secondary_reload): Add a secondary
        reload for symbol refs moved to r0 with -fPIC.
        (legitimize_pic_address): Use the target register as temporary
        reg if possible.
        * Makefile.in (tree-switch-conversion.o): Add.
        (OBJS-common): Add tree-swtch-conversion.o.
        * passes.c (init_optimization_passes): Add pass_convert_switch.
-       * tree-pass.h: (pass_convert_switch): Add.
+       * tree-pass.h (pass_convert_switch): Add.
        * tree-switch-conversion.c: New file.
        * gcc.dg/tree-ssa/cswtch.c: New testcase.
        * common.opt (ftree-cswtch): New option.
 2008-06-25  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/36627
-       * config/i386/i386.md : Change constraints of HImode and QImode
+       * config/i386/i386.md: Change constraints of HImode and QImode
        immediate operands from "i" to "n".  Change SImode "ni" constraint to
        "i" and SImode "rmi" constraint to "g".  Remove all constraints
        from const0_operand and const1_operand predicated operands.
        * configure: Regenerate.
        * doc/cpp.texi: Don't mention BeOS.
        * doc/extend.texi (interrupt): Don't mention MS1.
-       * doc/install.texi: (i386-@var{any}-sysv, m68k-bull-sysv,
+       * doc/install.texi (i386-@var{any}-sysv, m68k-bull-sysv,
        m68k-hp-hpux, m68000-hp-hpux, m68000-att-sysv,
        alphaev5-cray-unicosmk*, xscale-*-*, i?86-*-linux*aout,
        i?86-*-sco3.2v5*, i?86-*-udk, m68k-hp-hpux, powerpc-*-sysv4,
        (-mwindiss): Remove.
        (CRIS Options): Remove cris-axis-aout references.
        (HPPA Options): Don't mention hppa1.1-*-pro.
-       * doc/md.texi: (MorphoTech family): Remove.
+       * doc/md.texi (MorphoTech family): Remove.
        * libgcc2.c: Don't handle UWIN.
        * config/alpha/t-unicosmk: Remove.
        * config/alpha/unicosmk.h: Remove.
        (tree_call_cdce): Ditto.
        (gate_call_cdce): Ditto.
        (pass_call_cdce): New gimple pass.
-       * passes.c: (init_optimization_passes): New pass.
+       * passes.c (init_optimization_passes): New pass.
        * tree-pass.h: New pass declaration.
        * opts.c (decode_options): New flag setting.
        * common.opt: Add -ftree-builtin-call-dce flag.
 
 2008-05-27  Andreas Krebbel  <krebbel1@de.ibm.com>
 
-       * reload.c: (find_reloads): Skip alternatives according to the
+       * reload.c (find_reloads): Skip alternatives according to the
        "enabled" attribute. Constify the constraint variable.
        * recog.c (get_attr_enabled): Add default implementation.
        (extract_insn): Set the alternative_enabled_p array
        alternatives according to the "enabled" attribute
        * recog.h (struct recog_data): New field alternative_enabled_p.
        (skip_alternative): New inline function.
-       * regclass.c: (record_operand_costs): Check the "enabled" attribute.
+       * regclass.c (record_operand_costs): Check the "enabled" attribute.
        (record_reg_classes): Skip alternative according to the
        "enabled" attribute.
 
        expand_copysign_bit): Change call to emit_no_conflict_block to
        emit_insn and remove unneeded code to construct extra args.
        (emit_no_conflict_block): Removed.
-       * optabls.h: (emit_no_conflict_block): Removed.
+       * optabls.h (emit_no_conflict_block): Removed.
        * cse.c (cse_extended_basic_block): Remove search for
        REG_NO_CONFLICT note.
        * global.c: Removed incorrect comment added in revision 117.
 
        * config/i386/i386.md (fix_trunc<mode>_i387_fisttp_with_temp): Use 'X'
        constraint for operand 2 when operand 0 is memory operand.
-       (fix_truncdi_i387_with_temp): Use 'X' constraint for operand 4 when
+       (fix_truncdi_i387_with_temp): Use 'X' constraint for operand 4 when
        operand 0 is memory operand.
        (fix_trunc<mode>_i387_with_temp): Ditto.
        (*floatsi<mode>2_vector_mixed_with_temp): Use 'X' constraint for
        2008-04-07  Peter Bergner  <bergner@vnet.ibm.com>
 
        PR middle-end/PR28690
-       * rtlanal.c: (commutative_operand_precedence): Give SYMBOL_REF's the
+       * rtlanal.c (commutative_operand_precedence): Give SYMBOL_REF's the
        same precedence as REG_POINTER and MEM_POINTER operands.
 
 2008-04-08  Richard Guenther  <rguenther@suse.de>
        * config/i386/t-cygming: Add build rule for msformat-c.o.
        * doc/extend.texi: Add new format names gnu_* and ms_* and
        further details.
-       * doc/tm.texi: (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): New.
+       * doc/tm.texi (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): New.
 
 2008-03-20  Ira Rosen  <irar@il.ibm.com>
 
        * flags.h (flag_permissive): Declare. Update description.
        * diagnostic.c (pedwarn): Update.
        (permerror): New.
-       * diagnostic.h: (pedantic_error_kind): Rename as pedantic_warning_kind.
+       * diagnostic.h (pedantic_error_kind): Rename as pedantic_warning_kind.
        (permissive_error_kind): New.
        * toplev.c (flag_permissive): Define. Update description.
        * toplev.h (permissive_error_kind): Declare.
 
 2008-02-11  Kai Tietz  <kai.tietz@onevision.com>
 
-       * config/i386/cygwin.asm: (__alloca): Correct calling
+       * config/i386/cygwin.asm (__alloca): Correct calling
        convention and alignment.
        (__chkstk): Force 8 byte stack alignment.
 
        xstormy16_gimplify_va_arg_expr.
        Fix up some formatting issues.
 
-       * config/stormy16/stormy16.c: (xstormy16_carry_plus_operand):
+       * config/stormy16/stormy16.c (xstormy16_carry_plus_operand):
        Move to predicates.md.
        (xs_hi_general_operand): Likewise.
        (xs_hi_nonmemory_operand): Likewise.
 
 2008-01-12  Doug Kwan  <dougkwan@google.com>
 
-       * c-decl.c: (grokdeclarator): Use OPT_Wignored_qualifiers
+       * c-decl.c (grokdeclarator): Use OPT_Wignored_qualifiers
        instead of OPT_Wreturn_type in warning due to ignored return type
        qualifiers.
        * c-opt.c (c_common_post_option): Add -Wignored-qualifiers to