aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2007-06-19Merged revisions 125582-125751 via svnmerge from Chao-ying Fu
svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk ........ r125582 | ebotcazou | 2007-06-08 16:22:46 -0700 (Fri, 08 Jun 2007) | 4 lines * reload1.c (fixup_abnormal_edges): Clear bb field for insns not inserted on the edge. ........ r125585 | gccadmin | 2007-06-08 17:17:00 -0700 (Fri, 08 Jun 2007) | 1 line Daily bump. ........ r125587 | paolo | 2007-06-08 17:55:43 -0700 (Fri, 08 Jun 2007) | 4 lines 2007-06-08 Paolo Carlini <pcarlini@suse.de> * docs/html/install.html: Adjust consistently with libstdc++/31717. ........ r125590 | vprus | 2007-06-09 03:16:52 -0700 (Sat, 09 Jun 2007) | 4 lines * cppfiles.c (open_file): Account for the fact that on windows, opening a directory gives EACCES. ........ r125591 | ian | 2007-06-09 09:28:31 -0700 (Sat, 09 Jun 2007) | 9 lines ./: * tree-vrp.c (extract_range_from_unary_expr): For NOP_EXPR and CONVERT_EXPR, check whether min and max both converted to an overflow infinity representation. testsuite/: * gcc.c-torture/compile/pr32169.c: New test. ........ r125593 | tromey | 2007-06-09 09:48:47 -0700 (Sat, 09 Jun 2007) | 8 lines * c-decl.c (grokdeclarator): Added 'deprecated_state' argument. (deprecated_state): Removed. (start_decl): Update. (enum deprecated_states): Moved earlier. (groktypename): Update. (push_parm_decl): Likewise. (grokfield): Likewise. (start_function): Likewise. ........ r125594 | kseitz | 2007-06-09 10:32:42 -0700 (Sat, 09 Jun 2007) | 3 lines * testsuite/libjava.jvmti/dummyagent.c (Agent_OnLoad): Add missing return value. ........ r125595 | rakdver | 2007-06-09 14:34:08 -0700 (Sat, 09 Jun 2007) | 9 lines * tree-scalar-evolution.c (follow_ssa_edge_in_rhs, follow_ssa_edge_in_condition_phi, follow_ssa_edge): Keep more precise track of the size of the expression. * cfghooks.c (merge_blocks): Remove block from loops structure only after call of the merge_blocks hook. * gcc.dg/tree-ssa/loop-28.c: New testcase. ........ r125598 | gccadmin | 2007-06-09 17:16:56 -0700 (Sat, 09 Jun 2007) | 1 line Daily bump. ........ r125600 | bkoz | 2007-06-10 02:14:43 -0700 (Sun, 10 Jun 2007) | 6 lines 2007-06-10 Benjamin Kosnik <bkoz@redhat.com> * testsuite/util/testsuite_performance.h: Add cstring include for memset. ........ r125601 | dberlin | 2007-06-10 07:13:18 -0700 (Sun, 10 Jun 2007) | 7 lines 2007-06-09 Daniel Berlin <dberlin@dberlin.org> * tree-data-ref.c (dr_may_alias_p): Check that decl_a != decl_b, and allow DECL_P here. ........ r125602 | ebotcazou | 2007-06-10 11:36:40 -0700 (Sun, 10 Jun 2007) | 9 lines * decl.c (gnat_to_gnu_entity): Use pointers to dummy nodes, rather than to void, for the fields when making a new fat pointer type. (gnat_substitute_in_type): Now substitute_in_type. * gigi.h (gnat_substitute_in_type): Likewise. * trans.c (gnat_gimplify_expr): Remove COMPONENT_REF kludge. * utils.c (update_pointer_to): Update fat pointers by updating the dummy node pointers used for the fields. ........ r125603 | dberlin | 2007-06-10 13:21:48 -0700 (Sun, 10 Jun 2007) | 7 lines 2007-06-09 Daniel Berlin <dberlin@dberlin.org> * tree-ssa-structalias.c (set_uids_in_ptset): Add is_deref'd parameter, use it. (find_what_p_points_to): Pass new parameter to set_uids_in_ptset. ........ r125604 | rakdver | 2007-06-10 13:39:22 -0700 (Sun, 10 Jun 2007) | 44 lines * tree-data-ref.c (dr_analyze_alias): Handle case smt is NULL. * tree-predcom.c (mark_virtual_ops_for_renaming): Exported. * tree-ssa-loop-prefetch.c: Include optabs.h. (FENCE_FOLLOWING_MOVNT): New macro. (struct mem_ref): Add independent_p and storent_p fields. (record_ref): Initalize the new fields. (gather_memory_references_ref): Return true if the reference could be analysed. (gather_memory_references): Check whether all memory accesses in loop were recorded. (should_issue_prefetch_p): Return false for nontemporal stores. (nontemporal_store_p, mark_nontemporal_store, emit_mfence_after_loop, may_use_storent_in_loop_p, mark_nontemporal_stores): New functions. (determine_loop_nest_reuse): Detect independent memory references. (loop_prefetch_arrays): Call mark_nontemporal_stores. * tree-flow.h (mark_virtual_ops_for_renaming): Declare. * Makefile.in (tree-ssa-loop-prefetch.o): Add OPTABS_H dependency. * config/i386/i386.h (x86_mfence): Declare. (FENCE_FOLLOWING_MOVNT): Return x86_mfence. * config/i386/i386.c (x86_mfence): New variable. (ix86_init_mmx_sse_builtins): Initialize x86_mfence. * tree-pretty-print.c (dump_generic_node): Mark nontemporal stores. * optabs.c (init_optabs): Initialize storent_optab. * optabs.h (enum optab_index): Add OTI_storent. (storent_optab): Declare. * genopinit.c (optabs): Add initialization for storent_optab. * tree.h (MOVE_NONTEMPORAL): New macro. * expr.c (expand_assignment, store_expr, store_constructor_field, store_constructor, store_field, expand_expr_real_1): Propagate nontemporality of the expanded store. (emit_storent_insn): New function. * expr.h (expand_assignment, store_expr): Declaration changed. * function.c (assign_parm_setup_reg): Pass false as nontemporality to expand_assignment. * stmt.c (expand_asm_expr): Ditto. * calls.c (initialize_argument_information): Pass false as nontemporality to store_expr. * config/i386/sse.md (storentv4sf, storentv2df, storentv2di, storentsi): New. * gcc.dg/tree-ssa/prefetch-7.c: New test. ........ r125605 | spop | 2007-06-10 14:00:59 -0700 (Sun, 10 Jun 2007) | 4 lines * lambda-code.c (remove_iv): New. (lambda_loopnest_to_gcc_loopnest): Use remove_iv. ........ r125606 | jvdelisle | 2007-06-10 15:50:47 -0700 (Sun, 10 Jun 2007) | 7 lines 2007-06-10 Jerry DeLisle <jvdelisle@gcc.gnu.org> * io/transfer.c (st_read): Remove test for end of file condition. (next_record_r): Add test for end of file condition. ........ r125609 | gccadmin | 2007-06-10 17:16:58 -0700 (Sun, 10 Jun 2007) | 1 line Daily bump. ........ r125611 | jvdelisle | 2007-06-10 20:06:01 -0700 (Sun, 10 Jun 2007) | 5 lines 2007-06-10 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/backspace_9.f: New test. ........ r125612 | charlet | 2007-06-10 23:41:43 -0700 (Sun, 10 Jun 2007) | 8 lines 2007-06-11 Bob Duff <duff@adacore.com> Thomas Quinot <quinot@adacore.com> * g-stsifd-sockets.adb (Create): Work around strange behavior of 'bind' on windows that causes 'connect' to fail intermittently, by retrying the 'bind'. (GNAT.Sockets.Thin.Signalling_Fds): New procedure Close. ........ r125613 | charlet | 2007-06-10 23:44:41 -0700 (Sun, 10 Jun 2007) | 2 lines Resync ........ r125614 | uros | 2007-06-11 02:09:24 -0700 (Mon, 11 Jun 2007) | 10 lines * fold-const (fold_binary) [RDIV_EXPR]: Optimize a/sqrt(b/c) into a*sqrt(c/b) if flag_unsafe_math_optimizations is set. testsuite/ChangeLog: * gcc.dg/builtins-11.c: Also check folding of a/sqrt(b/c). ........ r125615 | uros | 2007-06-11 03:13:00 -0700 (Mon, 11 Jun 2007) | 10 lines * config/i386/sse.md ("sse2_ashlti", "sse2_lshrti3"): Move ... * config/i386/i386.md ("sse2_ashlti", "sse2_lshrti3"): ... to here. testsuite/ChangeLog: * gcc.target/i386/pr32280.c: New test. ........ r125616 | espindola | 2007-06-11 03:23:11 -0700 (Mon, 11 Jun 2007) | 1 line remove signed(_or_unsigned)?_type langhooks ........ r125617 | bernds | 2007-06-11 04:29:00 -0700 (Mon, 11 Jun 2007) | 5 lines * config/bfin/bfin.md (movdi_insn, movsi_insn, movv2hi_insn, movhi_insn, movqi_insn, movsf_insn, movdf_insn): Don't allow constant to memory moves. ........ r125618 | bonzini | 2007-06-11 06:33:29 -0700 (Mon, 11 Jun 2007) | 5 lines 2007-06-11 Paolo Bonzini <bonzini@gnu.org> * MAINTAINERS (Various Maintainer): Add myself as dataflow maintainer. ........ r125619 | jsm28 | 2007-06-11 07:55:06 -0700 (Mon, 11 Jun 2007) | 3 lines * config/arm/arm.c (arm_output_dwarf_dtprel, TARGET_ASM_OUTPUT_DWARF_DTPREL): New. ........ r125620 | ebotcazou | 2007-06-11 08:40:52 -0700 (Mon, 11 Jun 2007) | 4 lines * tree-ssa-structalias.c (find_what_p_points_to): Return false for ref-all pointers that point-to anything. ........ r125621 | espindola | 2007-06-11 08:40:55 -0700 (Mon, 11 Jun 2007) | 1 line really remove signed(_or_unsigned)?_type langhooks ........ r125622 | charlet | 2007-06-11 09:04:46 -0700 (Mon, 11 Jun 2007) | 2 lines Add new tests ........ r125623 | uros | 2007-06-11 09:06:19 -0700 (Mon, 11 Jun 2007) | 5 lines * config/i386/i386.md ("*movtf_internal): Penalize moves to and from integer registers. (FP mode splitters): Handle TFmode. ........ r125624 | dberlin | 2007-06-11 11:02:15 -0700 (Mon, 11 Jun 2007) | 2 lines Merge dataflow branch into mainline ........ r125625 | zadeck | 2007-06-11 11:22:49 -0700 (Mon, 11 Jun 2007) | 9 lines 2007-06-11 Kenneth Zadeck <zadeck@naturalbridge.com> * df-scan.c (df_insn_delete, df_insn_rescan, df_insn_rescan_all, df_process_deferred_rescans, df_notes_rescan): Fixed spelling of word "deferred". * df-core.c: Ditto. ........ r125626 | andreast | 2007-06-11 12:07:34 -0700 (Mon, 11 Jun 2007) | 6 lines 2007-06-11 Andreas Tobler <a.tobler@schweiz.org> * gcc.dg/setjmp-3.c: Rename raise to raise0. * gcc.dg/setjmp-4.c: Likewise. * gcc.target/i386/980211-1.c: Rename __signbitl to __signbitl0. ........ r125627 | zadeck | 2007-06-11 15:03:01 -0700 (Mon, 11 Jun 2007) | 6 lines 2007-06-11 Kenneth Zadeck <zadeck@naturalbridge.com> * reload1.c (mark_home_live_1): Use the mode parameter. ........ r125628 | pault | 2007-06-11 15:39:21 -0700 (Mon, 11 Jun 2007) | 26 lines 2007-06-12 Paul Thomas <pault@gcc.gnu.org> * trans-common.c (get_init_field): New function. (create_common): Call get_init_field for overlapping initializers in equivalence blocks. * resolve.c (resolve_equivalence_derived, resolve_equivalence): Remove constraints on initializers in equivalence blocks. * target-memory.c (expr_to_char, gfc_merge_initializers): New functions. (encode_derived): Add the bit offset to the byte offset to get the total offset to the field. * target-memory.h : Add prototype for gfc_merge_initializers. 2007-06-12 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/equiv_7.f90: New test. * gfortran.dg/equiv_constraint_7.f90: Change error message. * gfortran.dg/equiv_constraint_5.f90: Correct code and error. ........ r125631 | gccadmin | 2007-06-11 17:17:06 -0700 (Mon, 11 Jun 2007) | 1 line Daily bump. ........ r125634 | spark | 2007-06-11 18:11:03 -0700 (Mon, 11 Jun 2007) | 6 lines 2007-06-11 Seongbae Park <seongbae.park@gmail.com> * combine.c (subst): Use reg_overlap_mentioned_p instead of comparing register numbers directly. ........ r125635 | spark | 2007-06-11 18:39:25 -0700 (Mon, 11 Jun 2007) | 5 lines 2007-06-11 Seongbae Park <seongbae.park@gmail.com> * combine.c (subst): Fix typo. ........ r125636 | dnovillo | 2007-06-11 19:30:36 -0700 (Mon, 11 Jun 2007) | 4 lines * Makefile.in (reload1.o-warn): Remove. ........ r125638 | ebotcazou | 2007-06-11 22:57:40 -0700 (Mon, 11 Jun 2007) | 1 line Fix a few nits. ........ r125640 | pault | 2007-06-11 23:54:42 -0700 (Mon, 11 Jun 2007) | 4 lines 2007-06-12 Paul Thomas <pault@gcc.gnu.org> * trans-common.c (create_common): Initialize 'field_init'. ........ r125641 | uros | 2007-06-12 00:19:36 -0700 (Tue, 12 Jun 2007) | 8 lines * fold-const (fold_binary) [RDIV_EXPR]: Also optimize a/cbrt(b/c) into a*cbrt(c/b) if flag_unsafe_math_optimizations is set. testuite/ChangeLog: * gcc.dg/builtins-11.c: Also check folding of a/cbrt(b/c). ........ r125643 | uros | 2007-06-12 03:31:04 -0700 (Tue, 12 Jun 2007) | 10 lines * combine.c (simplify_if_then_else): Truncate return from nonzero_bits() to correct mode. testsuite/ChangeLog: * gcc.dg/pr32293.c: New test. ........ r125644 | rguenth | 2007-06-12 05:06:19 -0700 (Tue, 12 Jun 2007) | 20 lines 2007-06-12 Richard Guenther <rguenther@suse.de> * passes.c (init_optimization_passes): Add pass_tree_ifcombine. * timevar.def: Add TV_TREE_IFCOMBINE. * tree-pass.h (pass_tree_ifcombine): Declare. * tree-ssa-ifcombine.c: New file. * tree-ssa-phiopt.c (blocks_in_phiopt_order): Export. * tree-flow.h (blocks_in_phiopt_order): Declare. * Makefile.in (OBJS-common): Add tree-ssa-ifcombine.o. (tree-ssa-ifcombine.o): New dependencies. * gcc.c-torture/execute/20070424-1.c: New testcase. * gcc.dg/tree-ssa/ssa-ifcombine-1.c: Likewise. * gcc.dg/tree-ssa/ssa-ifcombine-2.c: Likewise. * gcc.dg/tree-ssa/ssa-ifcombine-3.c: Likewise. * gcc.dg/tree-ssa/ssa-ifcombine-4.c: Likewise. * gcc.dg/tree-ssa/ssa-ifcombine-5.c: Likewise. ........ r125645 | kazu | 2007-06-12 05:28:45 -0700 (Tue, 12 Jun 2007) | 2 lines * config/m68k/m68k-devices.def (52221, 52223, 5253): New. ........ r125646 | hainque | 2007-06-12 06:32:27 -0700 (Tue, 12 Jun 2007) | 9 lines * tree-nested.c (convert_local_reference): Handle VIEW_CONVERT_EXPR. Request walking the subtrees only, leaving the current is_lhs/val_only untouched. (convert_non_local_reference): Likewise. testsuite/ * gnat.dg/lhs_view_convert.adb: New test. ........ r125647 | mueller | 2007-06-12 07:28:34 -0700 (Tue, 12 Jun 2007) | 9 lines 2007-06-07 Dirk Mueller <dmueller@suse.de> * trans-stmt.c (gfc_trans_call): fix gcc_assert to a comparison, not an assignment. * optabls.c (debug_optab_libfuncs): fix gcc_assert to a comparison, not an assignment. ........ r125648 | bernds | 2007-06-12 07:35:13 -0700 (Tue, 12 Jun 2007) | 18 lines * config/bfin/bfin.md (UNSPEC_NOP): New constant. (forced_nop): New pattern. * config/bfin/bfin.c: Include "df.h". (add_to_reg): Use df_regs_ever_live_p instead of regs_ever_live. (bfin_discover_loop): Use df_get_live_in instead of global_live_at_start. (bfin_reorder_loops): Pass 0 to cfg_layout_initialize. Call df_analyze when done. (gen_one_bundle): Don't generate SEQUENCE insns, just put modes on the insns. Use QImode for the final insn in a bundle. Call df_insn_rescan on generated NOPs; use gen_forced_nop instead of gen_nop. (reorder_var_tracking_notes): New function. (bfin_reorg): Pass no argument to split_all_insns. Don't call update_life_info. Call df_analyze after scheduling and bundle generation. Call reorder_var_tracking_notes if generating these notes. Call df_finish_pass at the end. ........ r125649 | hainque | 2007-06-12 08:39:15 -0700 (Tue, 12 Jun 2007) | 22 lines * gcov.c: Comments updated. (source_info): Add file_time field. (source_index): New variable. (mutiple_files): New variable. (generate_results): New function extracted from process_file. (process_file): Save and restore chain of functions, generate results and free structures only if not merging results. (release_structures): File names are now freed in create_file_names (create_file_names): Free previous file names. (find_source): File date is now read here and modifications in source files is checked here. (read_graph_file): Only reverse order of functions for the current object file. (make_gcov_file_name): Do not generate long names if input_name is NULL. (output_lines): If merging results do not display graph, data and runs informations. Checking source file modification is done in find_source. * doc/gcov.texi: Append an s to sourcefile. ........ r125650 | mueller | 2007-06-12 08:44:55 -0700 (Tue, 12 Jun 2007) | 2 lines reorder changelog entries ........ r125651 | spark | 2007-06-12 08:56:10 -0700 (Tue, 12 Jun 2007) | 5 lines 2007-06-12 Seongbae Park <seongbae.park@gmail.com> * MAINTAINERS (Various Maintainer): Fix typo. ........ r125652 | ghazi | 2007-06-12 09:28:01 -0700 (Tue, 12 Jun 2007) | 5 lines * fold-const.c (fold_binary): Guard (X-X) -> 0 transformation with !HONOR_NANS and !HONOR_INFINITIES. * simplify-rtx.c (simplify_binary_operation_1): Likewise. ........ r125653 | ian | 2007-06-12 10:47:37 -0700 (Tue, 12 Jun 2007) | 44 lines ./: * tree.def: Add CHANGE_DYNAMIC_TYPE_EXPR. * tree.h (CHANGE_DYNAMIC_TYPE_NEW_TYPE): Define. (CHANGE_DYNAMIC_TYPE_LOCATION): Define. (DECL_NO_TBAA_P): Define. (struct tree_decl_common): Add no_tbaa_flag field. * tree-ssa-structalias.c (struct variable_info): Add no_tbaa_pruning field. (new_var_info): Initialize no_tbaa_pruning field. (unify_nodes): Copy no_tbaa_pruning field. (find_func_aliases): Handle CHANGE_DYNAMIC_TYPE_EXPR. (dump_solution_for_var): Print no_tbaa_pruning flag. (set_uids_in_ptset): Add no_tbaa_pruning parameter. Change all callers. (compute_tbaa_pruning): New static function. (compute_points_to_sets): Remove CHANGE_DYNAMIC_TYPE_EXPR nodes. Call compute_tbaa_pruning. * tree-ssa-alias.c (may_alias_p): Test no_tbaa_flag for pointers. * gimplify.c (gimplify_expr): Handle CHANGE_DYNAMIC_TYPE_EXPR. * gimple-low.c (lower_stmt): Likewise. * tree-gimple.c (is_gimple_stmt): Likewise. * tree-ssa-operands.c (get_expr_operands): Likewise. * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise. * tree-inline.c (estimate_num_insns_1): Likewise. (copy_result_decl_to_var): Likewise. * expr.c (expand_expr_real_1): Likewise. * tree-pretty-print.c (dump_generic_node): Likewise. * tree-inline.c (copy_decl_to_var): Copy DECL_NO_TBAA_P flag. * omp-low.c (omp_copy_decl_2): Likewise. * print-tree.c (print_node): Print DECL_NO_TBAA_P flag. * doc/c-tree.texi (Expression trees): Document CHANGE_DYNAMIC_TYPE_EXPR. cp/: * init.c (avoid_placement_new_aliasing): New static function. (build_new_1): Call it. testsuite/: * g++.dg/init/new16.C: New test. * g++.dg/init/new17.C: New test. * g++.dg/init/new18.C: New test. * g++.dg/init/new19.C: New test. ........ r125654 | ghazi | 2007-06-12 11:36:05 -0700 (Tue, 12 Jun 2007) | 6 lines * real.c (real_isfinite): New. (real_sqrt): Use it. * real.h (real_isfinite): New. * builtins.c: Use it. ........ r125655 | pinskia | 2007-06-12 12:15:50 -0700 (Tue, 12 Jun 2007) | 15 lines 2007-06-12 Andrew Pinski <andrew_pinski@playstation.sony.com> * expr.c (expand_expr_addr_expr_1): Call expand_expr for the offset with the modifier as EXPAND_INITIALIZER if the modifier is EXPAND_INITIALIZER. (expand_expr_real_1 <case INTEGER_CST>): Don't force to a register if we had an overflow. 2007-06-12 Andrew Pinski <andrew_pinski@playstation.sony.com> * g++.dg/torture/pr31579.C: New testcase. ........ r125656 | ebotcazou | 2007-06-12 13:25:23 -0700 (Tue, 12 Jun 2007) | 4 lines * tree-ssa-alias.c (finalize_ref_all_pointers): Clear pt_anything flag on ref-all pointers. ........ r125657 | spark | 2007-06-12 13:47:16 -0700 (Tue, 12 Jun 2007) | 12 lines 2007-06-12 Seongbae Park <seongbae.park@gmail.com> * opts.c (common_handle_option): Handle new option -fdbg-cnt-list. * dbgcnt.c (dbg_cnt_set_limit_by_name): Return value to indicate an error. (dbg_cnt_process_single_pair, dbg_cnt_list_all_counters): New functions (dbg_cnt_process_opt): Print an error on a bad argument. * dbgcnt.h (dbg_cnt_list_all_counters): New function declaration. * common.opt (-fdbg-cnt-list): New. * doc/invoke.texi (-fdbg-cnt-list,-fdbg-cnt=): New. ........ r125658 | zadeck | 2007-06-12 14:28:16 -0700 (Tue, 12 Jun 2007) | 9 lines 2007-06-12 Seongbae Park <seongbae.park@gmail.com> * df-scan.c (df_get_exit-block_use_set): Always add the stack pointer to the exit block use set. * gcse.c (cpro_jump): Don't emit barrier in cfglayout mode. * config/sparc/sparc.c (sparc_check_64): Check df != NULL. ........ r125659 | geoffk | 2007-06-12 15:49:16 -0700 (Tue, 12 Jun 2007) | 3 lines * g++.dg/warn/weak1.C: Suppress on Darwin. * g++.dg/other/unused1.C: Accept tabs or spaces in assembly. ........ r125664 | gccadmin | 2007-06-12 17:17:01 -0700 (Tue, 12 Jun 2007) | 1 line Daily bump. ........ r125666 | kazu | 2007-06-12 19:27:04 -0700 (Tue, 12 Jun 2007) | 7 lines * auto-inc-dec.c, c-incpath.c, config/c4x/libgcc.S, config/sh/divcost-analysis, dbgcnt.def, df-core.c, df-problems.c, df-scan.c, df.h, dominance.c, dse.c, regstat.c, tree-data-ref.c, tree-ssa-loop-im.c, tree-ssa-loop-prefetch.c, tree-vect-transform.c: Fix comment typos. Follow spelling conventions. ........ r125671 | paolo | 2007-06-13 00:31:39 -0700 (Wed, 13 Jun 2007) | 10 lines 2007-06-13 Paolo Carlini <pcarlini@suse.de> * include/c_global/cmath: Tweak includes. * include/std/memory: Likewise. * include/std/complex: Likewise. * include/tr1/memory: Likewise. * include/tr1/complex: Likewise. * include/tr1/cmath: Likewise; do not wrap special functions in #ifndef __GXX_EXPERIMENTAL_CXX0X__. ........ r125673 | dannysmith | 2007-06-13 03:21:50 -0700 (Wed, 13 Jun 2007) | 5 lines 2007-06-13 Dave Korn <dave.korn@artimi.com> * config/i386/i386.c (ix86_eax_live_at_start_p): Use df_get_live_out. ........ r125674 | ebotcazou | 2007-06-13 06:58:31 -0700 (Wed, 13 Jun 2007) | 4 lines * config/sparc/sparc.c (sparc_override_options): Initialize fpu mask correctly. ........ r125677 | bernds | 2007-06-13 07:21:31 -0700 (Wed, 13 Jun 2007) | 6 lines * config/bfin/bfin.c (gen_one_bundle): Delete unused local variables. (find_next_insn_start, find_load): New functions. (bfin_reorg): Use them to deal with the fact that parallel insns are no longer represented as a SEQUENCE. ........ r125680 | uros | 2007-06-13 08:48:51 -0700 (Wed, 13 Jun 2007) | 6 lines * config/i386/i386.c (ix86_init_mmx_sse_builtins) [__builtin_infq, __builtin_fabsq]: Define usign def_builtin. [__builtin_ia32_rsqrtps, __builtin_ia32_rsqrtss]: Define using def_builtin_const. ........ r125681 | bernds | 2007-06-13 10:41:07 -0700 (Wed, 13 Jun 2007) | 6 lines * config/bfin/bfin.h (EH_RETURN_HANDLER_RTX): Use gen_frame_mem. * config/bfin/bfin.md (UNSPEC_VOLATILE_STORE_EH_HANDLER): New constant. (eh_store_handler): New pattern. (eh_return): Emit it instead of a plain move. ........ r125682 | bwilson | 2007-06-13 11:27:50 -0700 (Wed, 13 Jun 2007) | 3 lines * df-scan.c (df_get_entry_block_def_set): Check if STATIC_CHAIN_REGNUM is defined. ........ r125683 | rearnsha | 2007-06-13 12:31:58 -0700 (Wed, 13 Jun 2007) | 4 lines * libsupc++/eh_arm.cc (__cxa_type_match): Handle foreign exceptions. * libsubpc++/eh_personality.cc: Don't try to set up foreign or forced unwind types here when using the ARM EABI unwinder. ........ r125684 | burnus | 2007-06-13 13:12:40 -0700 (Wed, 13 Jun 2007) | 12 lines 2007-06-13 Tobias Burnus <burnus@net-b.de> * interface.c (has_vector_section): New. (compare_actual_formal): Check for array sections with vector subscript. 2007-06-13 Tobias Burnus <burnus@net-b.de> * gfortran.dg/actual_array_vect_1.f90: New. ........ r125685 | echristo | 2007-06-13 15:06:15 -0700 (Wed, 13 Jun 2007) | 5 lines 2007-06-13 Eric Christopher <echristo@apple.com> * config/i386/i386.c (override_options): If we've specified an arch then don't use TARGET_SUBTARGET_ISA_DEFAULTs. ........ r125686 | kazu | 2007-06-13 15:57:14 -0700 (Wed, 13 Jun 2007) | 6 lines * basic-block.h: Remove the prototype for free_basic_block_vars. * cfglayout.h: Remove the prototype for insn_locators_initialize. * tree.h: Remove the prototype for emit_line_note. ........ r125687 | kazu | 2007-06-13 16:12:46 -0700 (Wed, 13 Jun 2007) | 3 lines * tree-ssa-pre.c (mergephitemp): Remove. (init_pre): Don't use mergephitemp. ........ r125688 | ths | 2007-06-13 16:22:29 -0700 (Wed, 13 Jun 2007) | 3 lines * config/mips/linux.h, config/mips/linux64.h (LIB_SPEC): Always imply -lpthread for -pthread. ........ r125692 | gccadmin | 2007-06-13 17:17:05 -0700 (Wed, 13 Jun 2007) | 1 line Daily bump. ........ r125694 | echristo | 2007-06-13 18:24:28 -0700 (Wed, 13 Jun 2007) | 4 lines 2007-06-13 Eric Christopher <echristo@apple.com> * gcc.target/i386/ssefn-1.c: Add -march=i386. ........ r125695 | echristo | 2007-06-13 18:53:17 -0700 (Wed, 13 Jun 2007) | 5 lines 2007-06-13 Eric Christopher <echristo@apple.com> * config/i386/darwin.h (PREFERRED_STACK_BOUNDARY): Don't let the user set a value below STACK_BOUNDARY. ........ r125696 | dannysmith | 2007-06-13 19:38:37 -0700 (Wed, 13 Jun 2007) | 31 lines ChangeLog/libgcc 2007-06-14 Danny Smith <dannysmith@users.sourceforge.net> * config.host(*-cygwin* |*-mingw* ): Add crtbegin.o, crtend.o to extra_parts. Add config/i386/t-cygming to tmake_file. * config/i386/t-cygming: New file with rules for crtbegin.o, crtend.o. ChangeLog/gcc 2007-06-14 Danny Smith <dannysmith@users.sourceforge.net> * config/i386/cygming.h (DWARF_FRAME_REGNUM): Define. (DWARF2_UNWIND_INFO): Override default if configured with SJLJ EH disabled. * config/i386/cygwin.h (STARTFILE_SPEC): Add crtbegin.o. (ENDFILE_SPEC): Add crtend.o. * config/i386/mingw32.h (STARTFILE_SEC): Add crtbegin.o. (ENDFILE_SPEC): Add crtend.o. (TARGET_USE_JCR_SECTION): Define. (MD_UNWIND_SUPPORT): Define for 32-bit target. * config/i386/cygming-crtbegin.c: New file. * config/i386/cygming-crtend.c: New file. 2007-06-14 Pascal Obry Pascal Obry <obry@adacore.com> * config/i386/w32-unwind.h: New file. ........ r125697 | bwilson | 2007-06-13 21:49:42 -0700 (Wed, 13 Jun 2007) | 4 lines * config/xtensa/xtensa.c (xtensa_expand_nonlocal_goto): Use validate_replace_rtx instead of replace_rtx. (xtensa_expand_prologue): Call df_insn_rescan after replace_rtx. ........ r125698 | bonzini | 2007-06-14 00:51:58 -0700 (Thu, 14 Jun 2007) | 8 lines 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Add --enable-checking=df. Explicitly mention that the variables are initialized as for "release". * df-core.c: Use it. * configure: Regenerate. * config.in: Regenerate. ........ r125699 | bonzini | 2007-06-14 00:54:21 -0700 (Thu, 14 Jun 2007) | 2 lines svn missed the changelog for previous rev... ........ r125700 | bonzini | 2007-06-14 01:10:41 -0700 (Thu, 14 Jun 2007) | 26 lines gcc: 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * acinclude.m4 (gcc_AC_CHECK_PROG_VER): Remove. * aclocal.m4: Regenerate. * configure.ac: Use ACX_PROG_CC_WARNING_OPTS, ACX_PROG_CC_WARNINGS_ARE_ERRORS, ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_CHECK_PROG_VER. * configure: Regenerate. * Makefile.in (LOOSE_WARN): Subst loose_warn. * Makefile.in (quickstrap): Build libgcc too. libiberty: 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * aclocal.m4: Include config/warnings.m4. * configure.ac: Use ACX_PROG_CC_WARNING_OPTS. * configure: Regenerate. config: 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * acx.m4 (ACX_CHECK_PROG_VER): Remove duplicate lines. ........ r125701 | bonzini | 2007-06-14 01:50:28 -0700 (Thu, 14 Jun 2007) | 6 lines 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile. (distclean-stage[+id+]): Possibly delete stage_last. * Makefile.in: Regenerate. ........ r125702 | charlet | 2007-06-14 02:24:07 -0700 (Thu, 14 Jun 2007) | 2 lines Add new tests. ........ r125703 | dorit | 2007-06-14 02:39:31 -0700 (Thu, 14 Jun 2007) | 4 lines * gcc.dg/vect/pr32224.c: Fix. ........ r125704 | fxcoudert | 2007-06-14 05:30:28 -0700 (Thu, 14 Jun 2007) | 4 lines * MAINTAINERS: Change spelling from "fortran 95" to "Fortran". Move all Fortran maintainers except Paul Brook into the Non-Autopoiesis section. ........ r125705 | hjl | 2007-06-14 05:44:43 -0700 (Thu, 14 Jun 2007) | 5 lines 2007-06-14 H.J. Lu <hongjiu.lu@intel.com> * configure.ac: Fix a typo in --enable-checking=. * configure: Regenerated. ........ r125708 | pault | 2007-06-14 06:04:05 -0700 (Thu, 14 Jun 2007) | 12 lines 2007-06-14 Paul Thomas <pault@gcc.gnu.org> * trans-common.c (build_common_decl): If resizing of common decl is needed, update the TREE_TYPE. 2007-06-14 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/common_resize_1.f90: New test. ........ r125710 | dnovillo | 2007-06-14 06:15:24 -0700 (Thu, 14 Jun 2007) | 5 lines * MAINTAINERS: Add self as middle-end maintainer and non-algorithmic global write maintainer. ........ r125711 | hjl | 2007-06-14 06:27:32 -0700 (Thu, 14 Jun 2007) | 5 lines 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Fix earlier checkin. * configure: Regenerated. ........ r125713 | ian | 2007-06-14 06:56:46 -0700 (Thu, 14 Jun 2007) | 3 lines * MAINTAINERS: Add myself as non-algorithmic global write maintainer. ........ r125715 | spark | 2007-06-14 07:33:21 -0700 (Thu, 14 Jun 2007) | 7 lines 2007-06-14 Rask Ingemann Lambertsen <rask@sygehus.dk> * config/v850/v850.c: Include dataflow header file. (substitute_ep_register): Fix typo. ........ r125716 | bonzini | 2007-06-14 07:40:58 -0700 (Thu, 14 Jun 2007) | 6 lines 2007-06-14 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Use ACX_PROG_CC_ALMOST_PEDANTIC too. * configure: Regenerate. ........ r125717 | bernds | 2007-06-14 10:10:54 -0700 (Thu, 14 Jun 2007) | 7 lines * configure.ac: Don't add target-libmudflap to noconfigdirs for bfin*-*-uclinux* targets. * configure: Regenerate. * gcc/config/bfin/uclinux.h (MFWRAP_SPEC): New. ........ r125718 | hjl | 2007-06-14 10:24:22 -0700 (Thu, 14 Jun 2007) | 11 lines 2007-06-14 H.J. Lu <hongjiu.lu@intel.com> * gcc.dg/dfp/fe-convert-1.c: Expect FE_OVERFLOW when converting from 10.000000e96DD to _Decimal32, from 10.000000e96DL to _Decimal32 and from 10.00000000000000E384DL to _Decimal64. * gcc.dg/dfp/fe-convert-2.c: Expect FE_INEXACT when converting from 1.0e96 and -1.0e96 to _Decimal32. Enable testing for converting from 1.0e-96 and 0.00048828125 to _Decimal32 when BID is used. ........ r125719 | uros | 2007-06-14 12:45:11 -0700 (Thu, 14 Jun 2007) | 9 lines * config/soft-fp/eqdf2.c, config/soft-fp/eqsf2.c, config/soft-fp/eqtf2.c, config/soft-fp/gedf2.c, config/soft-fp/gesf2.c, config/soft-fp/getf2.c, config/soft-fp/ledf2.c, config/soft-fp/lesf2.c, config/soft-fp/letf2.c, config/soft-fp/unorddf2.c, config/soft-fp/unordsf2.c, config/soft-fp/unordtf2.c, config/soft-fp/soft-fp.h: Update from glibc CVS. ........ r125720 | uros | 2007-06-14 13:15:13 -0700 (Thu, 14 Jun 2007) | 10 lines * config/i386/sfp-machine.c (CMPtype): New define. (mach stubs): Use CMPtype instead of int as a return type. testsuite/ChangeLog: * gcc.target/i386/pr32268.c: New test. ........ r125721 | geoffk | 2007-06-14 13:56:25 -0700 (Thu, 14 Jun 2007) | 4 lines * decl2.c (determine_visibility): Remove duplicate code for handling type info. ........ r125722 | geoffk | 2007-06-14 14:04:10 -0700 (Thu, 14 Jun 2007) | 3 lines * decl2.c (determine_visibility): Ensure that functions with hidden types as parameters are hidden. ........ r125723 | echristo | 2007-06-14 14:43:45 -0700 (Thu, 14 Jun 2007) | 6 lines 2007-06-14 Eric Christopher <echristo@apple.com> * config/i386/sse.md (movdi_to_sse): Rewrite body. (movv4sf): Use gcc_unreachable instead of abort. ........ r125726 | mueller | 2007-06-14 16:12:25 -0700 (Thu, 14 Jun 2007) | 5 lines 2007-06-14 Dirk Mueller <dmueller@suse.de> * g++.dg/opt/static6.C: New testcase. ........ r125729 | gccadmin | 2007-06-14 17:16:52 -0700 (Thu, 14 Jun 2007) | 1 line Daily bump. ........ r125731 | kazu | 2007-06-14 19:43:32 -0700 (Thu, 14 Jun 2007) | 2 lines * config/m68k/m68k.c (ASM_DOT, ASM_DOTW, ASM_DOTL): Remove. ........ r125733 | pinskia | 2007-06-14 20:39:31 -0700 (Thu, 14 Jun 2007) | 5 lines 2007-06-14 Andrew Pinski <andrew_pinski@playstation.sony.com> * tree-mudflap.c: Fix whitespace issues. ........ r125734 | kseitz | 2007-06-14 20:53:52 -0700 (Thu, 14 Jun 2007) | 10 lines * include/java-interp.h (_Jv_LocalVarTableEntry): Add union for bytecode_pc and direct-threaded pc. Add field descriptions inline. * defineclass.cc (read_one_code_attribute): Change from bytecode_start_pc to bytecode_pc. Remove unused variable "len". * interpret.cc (compile): Remap the variable table, too. (get_local_var_table) [DIRECT_THREADED]: Use insn_index on the start location to map from pc_t to code index. ........ r125736 | spark | 2007-06-14 23:33:24 -0700 (Thu, 14 Jun 2007) | 7 lines 2007-06-14 Seongbae Park <seongbae.park@gmail.com> * df-scan.c (df_uses_record): Don't modify flags but just add to it for df_ref_record. ........ r125737 | uros | 2007-06-15 00:01:31 -0700 (Fri, 15 Jun 2007) | 8 lines * libgcc2.c (CEXT): When compiling L_multc3 and L_divtc3, define to "l" if LIBGCC_LONG_DOUBLE_SIZE == 128, otherwise define to LIBGCC2_TF_CEXT. * config/i386/linux64.h (LIBGCC2_HAS_TF_MODE): New define. (LIBGCC_TF_CEXT): Ditto. (TF_SIZE): Ditto. ........ r125738 | charlet | 2007-06-15 01:27:59 -0700 (Fri, 15 Jun 2007) | 2 lines Add new tests ........ r125739 | ro | 2007-06-15 03:26:16 -0700 (Fri, 15 Jun 2007) | 5 lines * runtime/backtrace.c (show_backtrace): Only use snprintf if available. ........ r125740 | bernds | 2007-06-15 04:54:51 -0700 (Fri, 15 Jun 2007) | 6 lines * config/bfin/elf.h (ASM_GENERATE_INTERNAL_LABEL, LOCAL_LABEL_PREFIX): Delete. * config/bfin/bfin.c (TARGET_ASM_INTERNAL_LABEL): Delete. (bfin_internal_label): Delete. ........ r125745 | mmitchel | 2007-06-15 09:58:29 -0700 (Fri, 15 Jun 2007) | 10 lines * cp-tree.h (DECL_VAR_MARKED_P): Remove. (DECL_ANON_UNION_VAR_P): New macro. * class.c (fixed_type_or_null): Tidy. Use a hash table, rather than DECL_VAR_MARKED_P, to keep track of which variables we have seen. * decl.c (redeclaration_error_message): Complain about redeclaring anonymous union members at namespace scope. * decl2.c (build_anon_union_vars): Set DECL_ANON_UNION_VAR_P. * g++.dg/lookup/anon6.C: New test. ........ r125746 | mmitchel | 2007-06-15 10:31:53 -0700 (Fri, 15 Jun 2007) | 2 lines * rtlanal.c (note_stores): Improve documentation. ........ r125747 | mmitchel | 2007-06-15 10:33:01 -0700 (Fri, 15 Jun 2007) | 3 lines * doc/extend.texi: Document behavior of __attribute__((aligned)) on typedefs. ........ r125751 | gccadmin | 2007-06-15 17:16:57 -0700 (Fri, 15 Jun 2007) | 1 line Daily bump. ........ git-svn-id: https://gcc.gnu.org/svn/gcc/branches/fixed-point@125840 138bc75d-0d04-0410-961f-82ee72b054a4
2007-06-05Merged revisions 125075-125208 via svnmerge from Chao-ying Fu
svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk ........ r125075 | uros | 2007-05-25 14:58:21 -0700 (Fri, 25 May 2007) | 4 lines * config/i386/sse.md (*vec_extractv2di_1_sse2): Do not calculate "memory" attribute for "sseishft" type insn without operands[2]. ........ r125077 | uros | 2007-05-25 15:36:10 -0700 (Fri, 25 May 2007) | 11 lines * target/i386/i386.c (ix86_expand_vector_move): Force SUBREGs of constants into memory. Expand unaligned memory references for SSE modes via x86_expand_vector_move_misalign() function. testsuite/ChangeLog: * gcc.target/i386/pr32065.c: New test. ........ r125079 | kazu | 2007-05-25 15:44:06 -0700 (Fri, 25 May 2007) | 2 lines * intrinsic.texi: Fix typos. ........ r125080 | kazu | 2007-05-25 15:58:16 -0700 (Fri, 25 May 2007) | 7 lines * cfglayout.c, cgraphunit.c, config/avr/avr.c, fold-const.c, haifa-sched.c, optabs.h, tree-affine.c, tree-data-ref.c, tree-predcom.c, tree-ssa-alias-warnings.c, tree-ssa-forwprop.c, tree-vect-analyze.c, tree-vrp.c: Fix comment typos. Follow spelling conventions. * doc/cpp.texi, doc/invoke.texi: Fix typos. ........ r125083 | gccadmin | 2007-05-25 17:18:19 -0700 (Fri, 25 May 2007) | 1 line Daily bump. ........ r125085 | echristo | 2007-05-25 18:58:51 -0700 (Fri, 25 May 2007) | 9 lines 2007-05-25 Eric Christopher <echristo@apple.com> * config.gcc: Add i386/t-fprules-softfp64 and soft-fp/t-softfp to x86-darwin configurations. * config/i386/t-darwin: Add softfp support. * config/i386/t-darwin64: Ditto. * config/i386/sfp-machine.h: If mach then don't use aliasing, emit a stub to call. ........ r125086 | sandra | 2007-05-25 19:02:37 -0700 (Fri, 25 May 2007) | 27 lines 2007-05-25 Sandra Loosemore <sandra@codesourcery.com> Nigel Stephens <nigel@mips.com> gcc/ * config/mips/mips.c (mips_attribute_table): Add "near" and "far" function attributes, "far" being an alias for "long_call". (TARGET_COMP_TYPE_ATTRIBUTES): Define as mips_comp_type_attributes. (mips_near_type_p, mips_far_type_p): New. (mips_comp_type_attributes): New function to check that attributes attached to a function type are compatible. (mips_output_mi_thunk): Test SYMBOL_REF_LONG_CALL_P() rather than TARGET_LONG_CALLS when deciding whether we can do a direct sibcall to the target function of the thunk. (mips_encode_section_info): Check for "near" and "far" function attributes, and always set the SYMBOL_FLAG_LONG_CALL bit explicitly. * config/mips/predicates.md (const_call_insn_operand): Test only SYMBOL_REF_LONG_CALL_P() and not TARGET_LONG_CALLS. * doc/extend.texi (Function Attributes): Document MIPS "near" and "far" attributes. * testsuite/gcc.target/mips/near-far-1.c: New test case. * testsuite/gcc.target/mips/near-far-2.c: New test case. * testsuite/gcc.target/mips/near-far-3.c: New test case. * testsuite/gcc.target/mips/near-far-4.c: New test case. ........ r125087 | pinskia | 2007-05-25 20:29:58 -0700 (Fri, 25 May 2007) | 16 lines 2007-05-25 Andrew Pinski <andrew_pinski@playstation.sony.com> * tree-ssa-forwprop.c (forward_propagate_addr_into_variable_array_index): Remove the lhs argument. Use the type of def_rhs instead of lhs. (forward_propagate_addr_expr_1): Update use of forward_propagate_addr_into_variable_array_index. 2007-05-25 Andrew Pinski <andrew_pinski@playstation.sony.com> * g++.dg/opt/array2.C: New testcase. ........ r125088 | pault | 2007-05-26 04:25:36 -0700 (Sat, 26 May 2007) | 21 lines 2007-05-26 Paul Thomas <pault@gcc.gnu.org> * trans.h : Add no_function_call bitfield to gfc_se structure. Add stmtblock_t argument to prototype of get_array_ctor_strlen. * trans-array.c (get_array_ctor_all_strlen): New function. (get_array_ctor_strlen): Add new stmtblock_t argument and call new function for character elements that are not constants, arrays or variables. (gfc_conv_array_parameter): Call get_array_ctor_strlen to get good string length. * trans-intrinsic (gfc_conv_intrinsic_len): Add new argument to call of get_array_ctor_strlen. 2007-05-26 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/array_constructor_17.f90: New test. ........ r125089 | kazu | 2007-05-26 05:17:52 -0700 (Sat, 26 May 2007) | 6 lines * c-typeck.c, config/arm/arm.c, config/darwin.c, config/sh/symbian.c, gcc.c, ipa-cp.c, ipa-inline.c, loop-iv.c, omega.c, tree-ssa-loop-niter.c, treestruct.def: Fix typos and follow spelling conventions in various warning/error/diagnostic messages. ........ r125090 | kazu | 2007-05-26 06:00:47 -0700 (Sat, 26 May 2007) | 7 lines * config/i386/i386.c, config/pa/pa.c, config/spu/spu.c, df-problems.c, df-scan.c, domwalk.c, ebitmap.c, ebitmap.h, fold-const.c, gcc.c, ipa-type-escape.c, omega.c, omega.h, tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-structalias.c, tree-vrp.c: Fix comment typos. Follow spelling conventions. * doc/tm.texi: Follow spelling conventions. ........ r125091 | burnus | 2007-05-26 06:29:29 -0700 (Sat, 26 May 2007) | 6 lines 2007-05-26 Tobias Burnus <burnus@net-b.de> * gfortran.texi: Document the GFORTRAN_ERROR_DUMPCORE and GFORTRAN_ERROR_BACKTRACE environment variables. ........ r125093 | hjl | 2007-05-26 07:34:21 -0700 (Sat, 26 May 2007) | 20 lines 2007-05-26 H.J. Lu <hongjiu.lu@intel.com> * config/i386/i386-protos.h (ix86_expand_sse4_unpack): New. * config/i386/i386.c (ix86_expand_sse4_unpack): New. * config/i386/sse.md (vec_unpacku_hi_v16qi): Call ix86_expand_sse4_unpack if SSE4.1 is enabled. (vec_unpacks_hi_v16qi): Likewise. (vec_unpacku_lo_v16qi): Likewise. (vec_unpacks_lo_v16qi): Likewise. (vec_unpacku_hi_v8hi): Likewise. (vec_unpacks_hi_v8hi): Likewise. (vec_unpacku_lo_v8hi): Likewise. (vec_unpacks_lo_v8hi): Likewise. (vec_unpacku_hi_v4si): Likewise. (vec_unpacks_hi_v4si): Likewise. (vec_unpacku_lo_v4si): Likewise. (vec_unpacks_lo_v4si): Likewise. ........ r125094 | kazu | 2007-05-26 08:16:45 -0700 (Sat, 26 May 2007) | 3 lines * basic-block.h: Remove the prototype for merge_seq_blocks. * cfgcleanup.c (merge_seq_blocks): Remove. ........ r125095 | kazu | 2007-05-26 08:17:38 -0700 (Sat, 26 May 2007) | 3 lines * tree-flow.h: Remove the prototype for is_aliased_with. * tree-ssa-alias.c (is_aliased_with): Remove. ........ r125097 | jvdelisle | 2007-05-26 12:31:57 -0700 (Sat, 26 May 2007) | 5 lines 2007-05-26 Jerry DeLisle <jvdelisle@gcc.gnu.org> * io.c (check_format): Add warning for H specifier in format. ........ r125098 | jvdelisle | 2007-05-26 12:36:14 -0700 (Sat, 26 May 2007) | 5 lines 2007-05-26 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/io_constraints_2.f90: Update. ........ r125099 | jb | 2007-05-26 13:50:21 -0700 (Sat, 26 May 2007) | 21 lines 2007-05-26 Janne Blomqvist <jb@gcc.gnu.org> * io/unix.c (unix_stream): Rearrange struct members, remove small_buffer. (int_stream): New struct. (fd_alloc): Always use existing buffer, never reallocate. (fd_sfree): Remove check for buffer != small_buffer. (fd_close): Likewise. (mem_alloc_r_at): Change to use int_stream. (mem_alloc_w_at): Likewise. (mem_read): Likewise. (mem_write): Likewise. (mem_set): Likewise. (mem_truncate): Likewise. (mem_close): Likewise. (mem_sfree): Likewise. (empty_internal_buffer): Likewise. (open_internal): Likewise. ........ r125100 | jb | 2007-05-26 14:15:22 -0700 (Sat, 26 May 2007) | 17 lines 2007-05-27 Janne Blomqvist <jb@gcc.gnu.org> * runtime/string.c (compare0): Use gfc_charlen_type instead of int. (fstrlen): Likewise. (find_option): Likewise. (fstrcpy): Use gfc_charlen_type instead of int, return length. (cf_strcpy): Likewise. * libgfortran.h: Change string prototypes to use gfc_charlen_type. * io/open.c (new_unit): Use snprintf if available. * io/list_read.c (nml_touch_nodes): Use memcpy instead of strcpy/strcat. (nml_read_obj): Likewise. * io/transfer.c (st_set_nml_var): Likewise. * io/write.c (output_float): Use snprintf if available. (nml_write_obj) Use memcpy instead of strcpy/strcat. ........ r125102 | uros | 2007-05-26 14:35:41 -0700 (Sat, 26 May 2007) | 12 lines * config/i386/i386.md (movti): Handle push operands via ix86_expand_push(). testsuite/ChangeLog: * gcc.target/i386/pr32065-1.c: Rename from pr32065.c. Add -std=gnu99 to compile options. * gcc.target/i386/pr32065-2.c: New test. ........ r125105 | gccadmin | 2007-05-26 17:17:04 -0700 (Sat, 26 May 2007) | 1 line Daily bump. ........ r125107 | hjl | 2007-05-27 00:21:58 -0700 (Sun, 27 May 2007) | 7 lines 2007-05-27 H.J. Lu <hongjiu.lu@intel.com> * tree-vect-transform.c (vectorizable_conversion): Initialize tree_code variables to ERROR_MARK. (vectorizable_type_demotion): Likewise. (vectorizable_type_promotion): Likewise. ........ r125108 | burnus | 2007-05-27 01:09:51 -0700 (Sun, 27 May 2007) | 11 lines 2007-05-26 Tobias Burnus <burnus@net-b.de> * real.c (mpfr_from_real): Fix sign of -Inf. 2007-05-26 Tobias Burnus <burnus@net-b.de> * gfortran.dg/transfer_simplify_3.f90: New. ........ r125110 | burnus | 2007-05-27 06:57:03 -0700 (Sun, 27 May 2007) | 7 lines (svn add was forgotten) 2007-05-27 Tobias Burnus <burnus@net-b.de> * gfortran.dg/transfer_simplify_3.f90: New. ........ r125112 | paolo | 2007-05-27 07:50:21 -0700 (Sun, 27 May 2007) | 12 lines 2007-05-27 Paolo Carlini <pcarlini@suse.de> * include/tr1/boost_shared_ptr.h (_Sp_counted_base<_S_mutex>::_M_add_ref_lock()): Do not wrap in #ifdef __GTHREADS. 2007-05-27 Paolo Carlini <pcarlini@suse.de> * include/c_global/cwchar: Do not include <ctime>. * include/c_std/cwchar: Likewise. * include/ext/throw_allocator.h: Do it here. ........ r125114 | rakdver | 2007-05-27 10:23:11 -0700 (Sun, 27 May 2007) | 35 lines * tree-vrp.c (execute_vrp): Do not check whether current_loops == NULL. * tree-chrec.c (evolution_function_is_invariant_rec_p): Ditto. * ifcvt.c (if_convert): Ditto. * tree-ssa-threadupdate.c (thread_block): Ditto. (thread_through_all_blocks): Ditto. Assert that loops were analysed. * tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa, verify_loop_closed_ssa): Check number_of_loops instead of current_loops. * predict.c (tree_estimate_probability): Ditto. * tree-if-conv.c (main_tree_if_conversion): Ditto. * tree-ssa-loop-ch.c (copy_loop_headers): Ditto. * modulo-sched.c (sms_schedule): Ditto. * tree-scalar-evolution.c (scev_const_prop): Ditto. (scev_finalize): Do not do anything if scev analysis was not initialized. * cfgloopanal.c (mark_irreducible_loops): Do not check whether current_loops == NULL. (mark_loop_exit_edges): Check number_of_loops instead of current_loops. * loop-init.c (loop_optimizer_init): Do not free current_loops when there are no loops. (loop_optimizer_finalize): Assert that loops were analyzed. (rtl_move_loop_invariants, rtl_unswitch, rtl_unroll_and_peel_loops, rtl_doloop): Check number_of_loops instead of current_loops. * tree-ssa-loop.c (tree_loop_optimizer_init): Do not check whether current_loops == NULL. (tree_ssa_loop_init, tree_ssa_loop_im, tree_ssa_loop_unswitch, gate_tree_vectorize tree_linear_transform, check_data_deps, tree_ssa_loop_ivcanon, tree_ssa_empty_loop, tree_ssa_loop_bounds, tree_complete_unroll, tree_ssa_loop_prefetch, tree_ssa_loop_ivopts): Check number_of_loops instead of current_loops. (tree_ssa_loop_done): Do not check whether current_loops == NULL. * tree-ssa-pre.c (fini_pre): Do not take do_fre argument. Always free loops if available. (execute_pre): Do not pass do_fre to fini_pre. ........ r125116 | echristo | 2007-05-27 12:13:07 -0700 (Sun, 27 May 2007) | 9 lines 2007-05-27 Eric Christopher <echristo@apple.com> * config/rs6000/rs6000.c (rs6000_emit_prologue): Update sp_offset depending on stack size. Save r12 depending on registers we're saving later. (rs6000_emit_epilogue): Update sp_offset depending only on stack size. ........ r125118 | burnus | 2007-05-27 14:24:48 -0700 (Sun, 27 May 2007) | 24 lines fortran/ 2007-05-27 Paul Thomas <pault@gcc.gnu.org> Tobias Burnus <burnus@net-b.de> * symbol.c (gfc_check_function_type): Copy dimensions of result variable. * resolve.c (resolve_contained_fntype): Improve symbol output in the error message. testsuite/ 2007-05-27 Tobias Burnus <burnus@net-b.de> * gfortran.dg/func_result_3.f90: New. -- Diese und die falgenden Zeilen werden ignoriert -- M gcc/testsuite/ChangeLog A gcc/testsuite/gfortran.dg/func_result_3.f90 M gcc/fortran/symbol.c M gcc/fortran/ChangeLog M gcc/fortran/resolve.c ........ r125119 | jvdelisle | 2007-05-27 15:42:54 -0700 (Sun, 27 May 2007) | 6 lines 2007-05-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> * parse.c (next_statement): Warn for truncated lines if source is free form. ........ r125122 | gccadmin | 2007-05-27 17:17:05 -0700 (Sun, 27 May 2007) | 1 line Daily bump. ........ r125124 | bonzini | 2007-05-27 23:34:21 -0700 (Sun, 27 May 2007) | 4 lines 2007-05-27 Paolo Bonzini <bonzini@gnu.org> * confsubdir.m4: Move here from newlib. ........ r125125 | bonzini | 2007-05-27 23:38:00 -0700 (Sun, 27 May 2007) | 6 lines 2007-05-27 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Include confsubdir.m4. * configure: Regenerate. ........ r125126 | razya | 2007-05-28 04:10:27 -0700 (Mon, 28 May 2007) | 14 lines 2007-05-07 Razya Ladelsky <razya@il.ibm.com> * matrix-reorg.c: New file. Implement matrix flattening and transposing optimization. * tree-pass.h: Add matrix reorg pass. * common.opt: Add fipa-mreorg flag. * Makefile.in: Add matrix-reorg.c. * passes.c: Add matrix reorg pass. * varpool.c (add_new_static_var): New function. * cgraph.h (add_new_static_var): Declare. ........ r125127 | razya | 2007-05-28 04:23:08 -0700 (Mon, 28 May 2007) | 2 lines Change date of changelog ........ r125128 | razya | 2007-05-28 04:27:34 -0700 (Mon, 28 May 2007) | 5 lines 2007-05-28 Razya Ladelsky <razya@il.ibm.com> * gcc.dg/matrix: New directory. ........ r125129 | uros | 2007-05-28 05:17:42 -0700 (Mon, 28 May 2007) | 5 lines * target/i386/i386.c (ix86_expand_vector_move): Expand unaligned memory access via x86_expand_vector_move_misalign() only for TImode values on 32-bit targets. ........ r125131 | gerald | 2007-05-28 08:42:25 -0700 (Mon, 28 May 2007) | 3 lines * doc/install.texi (Prerequisites): We no longer require Autoconf 2.13 for the top-level. ........ r125132 | robc | 2007-05-28 09:18:31 -0700 (Mon, 28 May 2007) | 2 lines Removed myself from MAINTAINERS. ........ r125133 | burnus | 2007-05-28 09:39:35 -0700 (Mon, 28 May 2007) | 7 lines 2007-05-28 Tobias Burnus <burnus@net-b.de> * runtime/memory.c (allocate_size): Use ERROR_ALLOCATION. (allocate,allocate64): Use stat variable if present. ........ r125134 | bkoz | 2007-05-28 10:02:30 -0700 (Mon, 28 May 2007) | 11 lines 2007-05-28 Benjamin Kosnik <bkoz@redhat.com> * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Re-organize. Sanity check gnu locale model requests to make sure it will work for the requested target. Add checks for strxfrm_l, strerror_l when in gnu locale, and strerror_r everywhere. * aclocal.m4: Regenerated. * configure: Regenerated. * config.h.in: Regenerated. ........ r125135 | brooks | 2007-05-28 11:20:29 -0700 (Mon, 28 May 2007) | 51 lines * gfortran.h (gfc_expr): Remove from_H, add "representation" struct. * primary.c (match_hollerith_constant): Store the representation of the Hollerith in representation, not in value.character. * arith.c: Add dependency on target-memory.h. (eval_intrinsic): Remove check for from_H. (hollerith2representation): New function. (gfc_hollerith2int): Determine value of the new constant. (gfc_hollerith2real): Likewise. (gfc_hollerith2complex): Likewise. (gfc_hollerith2logical): Likewise. (gfc_hollerith2character): Point both representation.string and value.character.string at the value string. * data.c (create_character_initializer): For BT_HOLLERITH rvalues, get the value from the representation rather than value.character. * expr.c (free_expr0): Update handling of BT_HOLLERITH values and values with representation.string. (gfc_copy_expr): Likewise. * intrinsic.c (do_simplify): Remove special treatement of variables resulting from Hollerith constants. * dump-parse-trees.c (gfc_show_expr): Update handling of Holleriths. * trans-const.c (gfc_conv_constant_to_tree): Replace from_H check with check for representation.string; get Hollerith representation from representation.string, not value.character. * trans-expr.c (is_zero_initializer_p): Replace from_H check with check for representation.string. * trans-stmt.c (gfc_trans_integer_select): Use gfc_conv_mpz_to_tree for case values, so as to avoid picking up the memory representation if the case is given by a transfer expression. * target-memory.c (gfc_target_encode_expr): Use the known memory representation rather than the value, if it exists. (gfc_target_interpret_expr): Store the memory representation of the interpreted expression as well as its value. (interpret_integer): Move to gfc_interpret_integer, make non-static. (interpret_float): Move to gfc_interpret_float, make non-static. (interpret_complex): Move to gfc_interpret_complex, make non-static. (interpret_logical): Move to gfc_interpret_logical, make non-static. (interpret_character): Move to gfc_interpret_character, make non-static. (interpret_derived): Move to gfc_interpret_derived, make non-static. * target-memory.h: Add prototypes for newly-exported gfc_interpret_* functions. ........ r125136 | brooks | 2007-05-28 11:30:50 -0700 (Mon, 28 May 2007) | 2 lines * gfortran.dg/transfer_simplify_4.f90: New test. ........ r125137 | brooks | 2007-05-28 11:33:11 -0700 (Mon, 28 May 2007) | 2 lines Corrected changelog; I forgot to update the test filename. ........ r125138 | brooks | 2007-05-28 11:34:02 -0700 (Mon, 28 May 2007) | 2 lines Corrected date in my last ChangeLog entry. ........ r125139 | pinskia | 2007-05-28 12:43:10 -0700 (Mon, 28 May 2007) | 15 lines 2007-05-28 Andrew Pinski <andrew_pinski@playstation.sony.com> * fold-const.c (tree_expr_nonnegative_warnv_p): Don't return true when truth_value_p is true and the type is of signed:1. 2007-05-28 Andrew Pinski <andrew_pinski@playstation.sony.com> * gcc.c-torture/execute/vrp-7.c: New test. ........ r125141 | brooks | 2007-05-28 13:53:09 -0700 (Mon, 28 May 2007) | 6 lines * target-memory.c (gfc_target_expr_size): Add handling for size of BT_HOLLERITH variables. * check.c (gfc_check_transfer): Reject BT_HOLLERITH variables in MOLD argument of TRANSFER. ........ r125142 | brooks | 2007-05-28 13:54:49 -0700 (Mon, 28 May 2007) | 3 lines * transfer_hollerith_1.f90: New test. ........ r125143 | brooks | 2007-05-28 13:55:41 -0700 (Mon, 28 May 2007) | 2 lines Corrected ChangeLog entry. ........ r125144 | kazu | 2007-05-28 14:27:29 -0700 (Mon, 28 May 2007) | 4 lines * targhooks.c (default_narrow_bitfield): Remove. * targhooks.h: Remove the prototype for default_narrow_bitfield. ........ r125145 | kazu | 2007-05-28 14:28:31 -0700 (Mon, 28 May 2007) | 4 lines * langhooks-def.h: Remove the prototype for hook_get_alias_set_0. * langhooks.c (hook_get_alias_set_0): Remove. ........ r125146 | kazu | 2007-05-28 14:29:29 -0700 (Mon, 28 May 2007) | 2 lines * global.c (EXECUTE_IF_CONFLICT): Remove. ........ r125147 | dberlin | 2007-05-28 14:56:51 -0700 (Mon, 28 May 2007) | 6 lines 2007-05-28 Daniel Berlin <dberlin@dberlin.org> * tree-ssa-dce.c (eliminate_unnecessary_stmts): Release LHS SSA name when we remove it from a call. ........ r125148 | burnus | 2007-05-28 15:07:23 -0700 (Mon, 28 May 2007) | 6 lines 2007-05-28 Tobias Burnus <burnus@net-b.de> * gfortran.dg/allocate_stat_1.f90: New. ........ r125149 | mmitchel | 2007-05-28 15:11:18 -0700 (Mon, 28 May 2007) | 2 lines * gcc_release: Adjust placement of release candidates. ........ r125154 | gccadmin | 2007-05-28 17:17:56 -0700 (Mon, 28 May 2007) | 1 line Daily bump. ........ r125156 | pinskia | 2007-05-28 17:25:25 -0700 (Mon, 28 May 2007) | 28 lines 2007-05-28 Andrew Pinski <Andrew_pinski@playstation.sony.com> * c-typeck.c (build_unary_op <case PREINCREMENT_EXPR, case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR, case POSTDECREMENT_EXPR>): Return the error_mark_node if either the real or imaginary parts would an error_mark_node. 2007-05-28 Andrew Pinski <Andrew_pinski@playstation.sony.com> * typeck.c (build_unary_op <case PREINCREMENT_EXPR, case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR, case POSTDECREMENT_EXPR>): Return the error_mark_node if either the real or imaginary parts would an error_mark_node. 2007-05-28 Andrew Pinski <andrew_pinski@playstation.sony.com> * gcc.dg/boolcomplex-1.c: New test. * g++.dg/ext/boolcomplex-1.c: New test ........ r125157 | danglin | 2007-05-28 18:01:32 -0700 (Mon, 28 May 2007) | 11 lines * pa/constraints.md: New file. * pa.md: Include constraints.md. * pa.c (cint_ok_for_move): Avoid using CONST_OK_FOR_LETTER_P. (integer_store_memory_operand, ldil_cint_p): New functions. * pa-protos.h (integer_store_memory_operand, ldil_cint_p): Declare. * pa.h (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P, IS_RELOADING_PSEUDO_P, EXTRA_CONSTRAINT): Remove. * pa32-regs.h (REG_CLASS_FROM_LETTER): Remove. * pa64-regs.h (REG_CLASS_FROM_LETTER): Remove. ........ r125158 | danglin | 2007-05-28 18:12:58 -0700 (Mon, 28 May 2007) | 3 lines * doc/md.texi: Document constraints on HP PA-RISC. ........ r125159 | brooks | 2007-05-28 20:40:00 -0700 (Mon, 28 May 2007) | 2 lines * trans-array.c (gfc_conv_expr_descriptor): Edit comment. ........ r125160 | dannysmith | 2007-05-29 01:09:16 -0700 (Tue, 29 May 2007) | 16 lines libgcc * config.host (i[34567]86-*-cygwin* | i[34567]86-*-mingw*) Add crtfastmath.o to extra_parts. Add i386/t-crtfm to tmake_file. * config/i386/t-crtfm: Compile crtfastmath.o with -minline-all-stringops. gcc * config/i386/t-crtfm: Compile crtfastmath.o with -minline-all-stringops. * config/i386/cygwin.h (ENDFILE_SPECS): Add crtfastmath.o. * config/i386/mingw32.h (ENDFILE_SPECS): Add crtfastmath.o. ........ r125161 | tobi | 2007-05-29 02:03:03 -0700 (Tue, 29 May 2007) | 15 lines 2007-05-28 Tobias Schlter <tobi@gcc.gnu.org> fortran/ * gfortran.h (gfc_generic_isym_id): Add GFC_ISYM_SIZEOF. * intrinsic.c (add_functions): Add stuff for SIZEOF intrinsic. * intrinsic.h (gfc_check_sizeof): Add prototype of ... * check.c (gfc_check_sizeof): .. new function. * trans-intrinsic.c (gfc_conv_intrinsic_sizeof): New function. (gfc_conv_intrinsic_strcmp): Whitespace fix. (gfc_conv_intrinsic_array_transfer): Remove double initialization, use fold_build. where appropriate. (gfc_conv_intrinsic_function): Add case for SIZEOF. * intrinsic.texi: Add documentation for SIZEOF. testsuite/ * gfortran.dg/sizeof.f90: New. ........ r125162 | dberlin | 2007-05-29 06:09:30 -0700 (Tue, 29 May 2007) | 5 lines 2007-05-29 Daniel Berlin <dberlin@dberlin.org> * tree-ssa-alias.c: Add aliasing overview. ........ r125163 | paolo | 2007-05-29 07:22:40 -0700 (Tue, 29 May 2007) | 9 lines 2007-05-29 Paolo Carlini <pcarlini@suse.de> * aclocal.m4: Regenerate. * testsuite/17_intro/headers/c++1998/c++_for_c.tar: Remove. * testsuite/17_intro/headers/c++1998/c++.tar: Likewise. ........ r125164 | hjl | 2007-05-29 07:30:42 -0700 (Tue, 29 May 2007) | 6 lines 2007-05-29 H.J. Lu <hongjiu.lu@intel.com> * configure.ac: Don't include ../config/confsubdir.m4. * aclocal.m4: Regenerated. * configure: Likewise. ........ r125168 | dfranke | 2007-05-29 14:10:48 -0700 (Tue, 29 May 2007) | 17 lines 2007-05-29 Daniel Franke <franke.daniel@gmail.com> * gfortran.h: Renamed 'enum gfc_generic_isym_id' to 'enum gfc_isym_id', added missing GFC_ISYM_* enumerators, ordered alphabetically. (struct gfc_intrinsic_sym): Renamed 'generic_id' to 'id'. (gfc_find_subroutine): New prototype. * intrinsic.c (add_sym, add_sym_*): Added argument 'id' and changed all callers. (find_subroutine): Renamed to 'gfc_find_subroutine', removed static. * dependency.c: Changed usage of isym->generic_id to isym->id. * openmp.c: Likewise. * resolve.c: Likewise. * trans-array.c: Likewise. * trans-expr.c: Likewise. * trans-intrinsic.c: Likewise. * trans-openmp.c: Likewise. ........ r125172 | rakdver | 2007-05-29 14:55:47 -0700 (Tue, 29 May 2007) | 29 lines * tree-vectorizer.h (DR_MISALIGNMENT): Cast aux to integer. (SET_DR_MISALIGNMENT): New. * tree-vect-analyze.c (vect_compute_data_ref_alignment, vect_update_misalignment_for_peel, vect_enhance_data_refs_alignment): Use SET_DR_MISALIGNMENT. * tree-predcom.c (split_data_refs_to_components): Cast dr->aux from pointer. * tree-data-ref.c (create_data_ref, compute_all_dependences, find_loop_nest): Export. * tree-data-ref.h (struct data_reference): Change aux field to pointer. (create_data_ref, compute_all_dependences, find_loop_nest): Declare. * tree-ssa-loop-prefetch.c: Include tree-data-ref.h. (L1_CACHE_SIZE_BYTES, L2_CACHE_SIZE_BYTES, NONTEMPORAL_FRACTION): New macros. (struct mem_ref): Add field reuse_distance. (find_or_create_group, record_ref): Use XNEW instead of xcalloc. Initialize reuse_distance field. (issue_prefetch_ref): Select temporality of prefetch according to reuse_distance. (volume_of_references, volume_of_dist_vector, add_subscript_strides, self_reuse_distance, determine_loop_nest_reuse): New functions. (loop_prefetch_arrays): Call determine_loop_nest_reuse. (tree_ssa_prefetch_arrays): Dump L2 cache size. * Makefile.in (tree-ssa-loop-prefetch.o): Add TREE_DATA_REF_H dependency. * gcc.dg/tree-ssa/prefetch-6.c: New test. ........ r125173 | hmchang | 2007-05-29 15:49:42 -0700 (Tue, 29 May 2007) | 5 lines * config/i386/i386.c (ix86_function_regparm): Added checking of ix86_force_align_arg_pointer to determine the number of register parameters. * gcc.target/i386/stack-realign.c: New. ........ r125176 | gccadmin | 2007-05-29 17:17:03 -0700 (Tue, 29 May 2007) | 1 line Daily bump. ........ r125178 | daney | 2007-05-29 21:21:24 -0700 (Tue, 29 May 2007) | 4 lines * config/mips/mips.c (mips_output_mi_thunk): Emit NOTE_INSN_PROLOGUE_END at beginning of the thunk. ........ r125179 | razya | 2007-05-30 00:17:55 -0700 (Wed, 30 May 2007) | 6 lines 2007-05-28 Razya Ladelsky <razya@il.ibm.com> * gcc.dg/matrix: New directory. ........ r125180 | uros | 2007-05-30 04:24:32 -0700 (Wed, 30 May 2007) | 54 lines * config/i386/i386.h (TARGET_ABM): New define. (TARGET_POPCNT): Ditto. (TARGET_64BIT, TARGET_MMX, TARGET_3DNOW, TARGET_3DNOW_A, TARGET_SSE*): New temporary defines to redefine from OPTION_ISA_* defines. (MASK_64BIT, MASK_MMX, MASK_3DNOW, MASK_3DNOW_A, MASK_SSE*): New temporary defines to redefine from OPTION_MASK_ISA_* defines. (ix86_isa_flags): New extern int declaration. (TARGET_SUBTARGET_DEFAULT): New define. (TARGET_SUBTARGET_ISA_DEFAULT): Ditto. (TARGET_SUBTARGET32_DEFAULT): Ditto. (TARGET_SUBTARGET32_ISA_DEFAULT): Ditto. (TARGET_SUBTARGET64_ISA_DEFAULT): Ditto. * config/i386/unix.h: Undef TARGET_SUBTARGET_DEFAULT before define. * config/i386/darwin.h: Change TARGET_64BIT define to OPTION_ISA_64BIT. * config/i386/i386.opt (m3dnowa): Define as undocumented option using existing "ix86_isa_flags" varible. (m32, m64): Use existing "ix86_isa_flags" variable. (mmmx, m3dnow): Ditto. (msse, msse2, msse3, mssse3, msse4.1, msse4a): Ditto. (mabm): Define as non-negative option using "x86_abm" variable. (mpopcnt): Define as non-negative option using "x86_popcnt" variable. * config/i386/i386.c (ix86_arch_features) [X86_ARCH_CMOVE]: Rewrite feature test bitmap. (ix86_isa_flags): New initialized global int varible. (ix86_isa_flags_explicit): New static int variable. (ix86_handle_option): Set "ix86_isa_flags_explicit" when mmmx, m3dnow, msse, msse2, msse3, msse4.1 and msse4a option is processed. Change i86_isa_flags and ix86_isa_flags_explicit, not target_flags and target_flags_explicit. (override_options): Remove "target_enable" and "target_disable" fields from "struct ptt". Update processor_target_table accordingly. Remove PTA_PREFETCH_SSE from processor_alias_table entry if PTE_SSE is defined and rearrange PTA_* bits. Use "ix86_isa_flags" instead of "target_flags" and "ix86_isa_flags_explicit" instead of "target_flags_explicit" when masked with MASK_64BIT, MASK_MMX, MASK_3DNOW, MASK_3DNOW_A or MASK_SSE*. Set "x86_abm" to true when PTA_ABM is set in processor_alias_table flags entry. Set "x86_popcnt" to true when either of PTA_POPCNT or PTA_ABM is set in processor_alias_table flags entry. Set "x86_prefetch_sse" to true when either of PTA_PREFETCH_SSE or PTA_SSE is set in processor_alias_table flags entry. Remove handling of "target_enable" and "target_disable" fields of processor_target_table. Mask "target_flags" with TARGET_SUBTARGET32_DEFAULT for 32-bit targets or with TARGET_SUBTARGET64_DEFAULT for 64-bit targets. Mask "ix86_isa_flags" with TARGET_SUBTARGET32_ISA_DEFAULT for 32-bit targets or with TARGET_SUBTARGET64_ISA_DEFAULT for 64-bit targets. (def_builtin): Mask "mask" variable with "ix86_isa_flags", not "target_flags". (TARGET_DEFAULT_TARGET_FLAGS): Do not include TARGET_64BIT_DEFAULT. ........ r125181 | rakdver | 2007-05-30 06:29:51 -0700 (Wed, 30 May 2007) | 13 lines * tree-scalar-evolution.c (scev_const_prop): Do not create labels. * tree-ssa-sink.c (statement_sink_location): Return basic block and bsi of the location where statements should be inserted. (sink_code_in_bb): Take bsi from statement_sink_location. * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Use bsi_after_labels instead of bsi_start. * tree-profile.c (tree_gen_ic_func_profiler): Pass BSI_NEW_STMT to bsi_insert_after. * tree-cfg.c (bsi_move_after): Pass BSI_NEW_STMT to bsi_insert_after. (bsi_move_before): Document inconsistency with bsi_move_after. (tree_redirect_edge_and_branch): Do not create labels if not necessary. ........ r125182 | jakub | 2007-05-30 06:32:34 -0700 (Wed, 30 May 2007) | 4 lines * configure.in: Don't use -fkeep-inline-functions for GCC < 3.3.1. * configure: Rebuilt. ........ r125183 | jakub | 2007-05-30 06:46:25 -0700 (Wed, 30 May 2007) | 6 lines * except.c (duplicate_eh_regions): Clear prev_try if ERT_MUST_NOT_THROW region is inside of ERT_TRY region. * g++.dg/gomp/pr31769.C: New test. ........ r125187 | rguenth | 2007-05-30 07:11:06 -0700 (Wed, 30 May 2007) | 9 lines 2007-05-30 Richard Guenther <rguenther@suse.de> * gimplify.c (gimplify_omp_atomic_pipeline): Use correct types for comparison. * fold-const.c (fold_comparison): Call maybe_canonicalize_comparison with original typed arguments. * config/i386/i386.c (ix86_gimplify_va_arg): Fix type mismatches. ........ r125189 | uros | 2007-05-30 07:44:35 -0700 (Wed, 30 May 2007) | 7 lines * config/i386/i386.h (MASK_64BIT, MASK_MMX, MASK_3DNOW*, MASK_SSE*): Remove defines. * config/i386/biarch.h (TARGET_64BIT_DEFAULT): Define to OPTION_MASK_ISA_64BIT. * config/i386/i386.c: Rename MASK_* macros to OPTION_MASK_ISA_*. ........ r125191 | rguenth | 2007-05-30 08:41:03 -0700 (Wed, 30 May 2007) | 5 lines 2007-05-30 Richard Guenther <rguenther@suse.de> * MAINTAINERS (Various Maintainers): Add myself as auto-vectorizer maintainer. ........ r125192 | echristo | 2007-05-30 10:07:58 -0700 (Wed, 30 May 2007) | 22 lines 2007-05-30 Eric Christopher <echristo@gmail.com> * genrecog.c: Include regs.h in generated file. * genemit.c: Ditto. Fix up formatting. * config/mn10300/constraints.md: New. * config/mn10300/mn10300.md: Include. * config/mn10300/mn10300.c(mn10300_secondary_reload_class): Fix up for removed macro. * config/mn10300/predicates.md (call_address_operand): Ditto. * config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Delete. (CONST_OK_FOR_I): Ditto. (CONST_OK_FOR_J): Ditto. (CONST_OK_FOR_K): Ditto. (CONST_OK_FOR_L): Ditto. (CONST_OK_FOR_M): Ditto. (CONST_OK_FOR_N): Ditto. (CONST_DOUBLE_OK_FOR_LETTER_P): Ditto. (OK_FOR_Q): Ditto. (OK_FOR_R): Ditto. (OK_FOR_T): Ditto. (EXTRA_CONSTRAINT): Ditto. ........ r125193 | hjl | 2007-05-30 10:48:10 -0700 (Wed, 30 May 2007) | 5 lines 2007-05-30 H.J. Lu <hongjiu.lu@intel.com> * libtool.m4 (_LT_LANG_GCJ_CONFIG): Use gcc to test gcj features. ........ r125194 | hjl | 2007-05-30 10:52:05 -0700 (Wed, 30 May 2007) | 8 lines 2007-05-30 H.J. Lu <hongjiu.lu@intel.com> * configure.ac: Add AC_CONFIG_AUX_DIR(../..). * aclocal.m4: Regenerated. * configure: Likewise. * Makefile.in: Likewise. ........ r125195 | hjl | 2007-05-30 10:54:48 -0700 (Wed, 30 May 2007) | 5 lines 2007-05-30 H.J. Lu <hongjiu.lu@intel.com> * configure: Regenerated. ........ r125196 | rsandifo | 2007-05-30 12:04:09 -0700 (Wed, 30 May 2007) | 49 lines gcc/ * config.gcc (arm-wrs-vxworks): Remove dbxelf.h from tm_file. Add vx-common.h. Include vxworks.h between vx-common.h and arm/vxworks.h. * config/vx-common.h (DWARF2_UNWIND_INFO): Undefine before redefining. * config/vxworks.h (TARGET_ASM_CONSTRUCTOR): Likewise. (TARGET_ASM_DESTRUCTOR): Likewise. * config/arm/vxworks.h (TARGET_OS_CPP_BUILTINS): Check arm_arch_xscale instead of arm_is_xscale. Use VXWORKS_OS_CPP_BUILTINS. (OVERRIDE_OPTIONS, SUBTARGET_CPP_SPEC): Define. (CC1_SPEC): Add -tstrongarm. Line up backslashes. (VXWORKS_ENDIAN_SPEC): Define. (ASM_SPEC): Add VXWORKS_ENDIAN_SPEC. (LIB_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): Redefine to their VXWORKS_* equivalents. (LINK_SPEC): Likewise, but add VXWORKS_ENDIAN_SPEC. (ASM_FILE_START): Delete. (TARGET_VERSION): Reformat. (FPUTYPE_DEFAULT, FUNCTION_PROFILER): Define. (DEFAULT_STRUCTURE_SIZE_BOUNDARY): Define. * config/arm/t-vxworks (LIB1ASMSRC, LIB1ASMFUNCS): Define. (FPBIT, DPBIT): Define. (fp-bit.c, dp-bit.c): New rules. (MULTILIB_OPTIONS): Add strongarm, -mrtp and -mrtp/-fPIC multilibs. (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Define. * config/arm/arm-protos.h (arm_emit_call_insn): Declare. * config/arm/arm.h: Include vxworks-dummy.h. * config/arm/arm.c (arm_elf_asm_constructor, arm_elf_asm_destructor): Mark with ATTRIBUTE_UNUSED. (arm_override_options): Do not allow VxWorks RTP PIC to be used for Thumb. Force r9 to be the PIC register for VxWorks RTPs and make it incompatible with -msingle-pic-base. (arm_function_ok_for_sibcall): Return false for calls that might go through a VxWorks PIC PLT entry. (require_pic_register): New function, split out from... (legitimize_pic_address): ...here. Do not use GOTOFF accesses for VxWorks RTPs. (arm_load_pic_register): Handle the VxWorks RTP initialization sequence. Use pic_reg as a shorthand for cfun->machine->pic_reg. (arm_emit_call_insn): New function. (arm_assemble_integer): Do not use GOTOFF accesses for VxWorks RTP. * config/arm/arm.md (UNSPEC_PIC_OFFSET): New unspec number. (pic_offset_arm): New pattern. (call, call_value): Use arm_emit_call_insn. (call_internal, call_value_internal): New expanders. * config/arm/lib1funcs.asm (__PLT__): Define to empty for VxWorks unless __PIC__. ........ r125197 | kazu | 2007-05-30 12:24:28 -0700 (Wed, 30 May 2007) | 3 lines * gcc.target/arm/pr27387.C: Move and rename to ... * g++.dg/inherit/thunk8.C: ... here. ........ r125198 | uros | 2007-05-30 13:07:06 -0700 (Wed, 30 May 2007) | 2 lines * config/i386/darwin.h (TARGET_SUBTARGET_DEFAULT): Undef before define. ........ r125200 | rguenth | 2007-05-30 14:17:32 -0700 (Wed, 30 May 2007) | 5 lines 2007-05-30 Richard Guenther <rguenther@suse.de> * g++.dg/dg.exp: Prune torture/. * g++.dg/torture/dg-torture.exp: New testsuite. ........ r125201 | jakub | 2007-05-30 14:24:24 -0700 (Wed, 30 May 2007) | 6 lines * decl.c (cp_finish_decl): Clear TREE_READONLY flag on TREE_STATIC variables that need runtime initialization. * g++.dg/opt/static5.C: New test. ........ r125202 | mueller | 2007-05-30 15:22:43 -0700 (Wed, 30 May 2007) | 3 lines * cgraphunit.c (cgraph_analyze_function): Remove computation of inline parameters. ........ r125203 | ian | 2007-05-30 15:51:22 -0700 (Wed, 30 May 2007) | 2 lines * tree-vrp.c (compare_names): Initialize sop. ........ r125205 | rakdver | 2007-05-30 16:25:30 -0700 (Wed, 30 May 2007) | 4 lines * MAINTAINERS (Various Maintainers): Add myself as auto-vectorizer maintainer. ........ r125208 | gccadmin | 2007-05-30 17:16:52 -0700 (Wed, 30 May 2007) | 1 line Daily bump. ........ git-svn-id: https://gcc.gnu.org/svn/gcc/branches/fixed-point@125344 138bc75d-0d04-0410-961f-82ee72b054a4
2007-03-26Merged revisions 123116-123221 via svnmerge from Chao-ying Fu
svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk ........ r123116 | jakub | 2007-03-21 12:43:14 -0700 (Wed, 21 Mar 2007) | 10 lines * testsuite/libgomp.fortran/appendix-a/a.22.8.f90: Add dg-final cleanup-modules line. * testsuite/libgomp.fortran/appendix-a/a.40.1.f90: Likewise. * testsuite/libgomp.fortran/appendix-a/a.31.5.f90: Likewise. * testsuite/libgomp.fortran/appendix-a/a.31.4.f90: Likewise. * testsuite/libgomp.fortran/threadprivate2.f90: Likewise. * testsuite/libgomp.fortran/reduction5.f90: Likewise. * testsuite/libgomp.fortran/threadprivate3.f90: Likewise. * testsuite/libgomp.fortran/threadprivate1.f90: Likewise. ........ r123117 | rsandifo | 2007-03-21 13:09:15 -0700 (Wed, 21 Mar 2007) | 4 lines * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting of glob. Quote arguments with single quotes too. * configure: Regenerate. ........ r123122 | gccadmin | 2007-03-21 17:17:55 -0700 (Wed, 21 Mar 2007) | 1 line Daily bump. ........ r123124 | spark | 2007-03-21 23:18:33 -0700 (Wed, 21 Mar 2007) | 6 lines 2007-03-21 Seongbae Park <seongbae.park@gmail.com> * regmove.c (regmove_optimize): Use reg_mentioned_p instead of reg_overlap_mentioned_p for DST. ........ r123125 | uros | 2007-03-22 00:00:08 -0700 (Thu, 22 Mar 2007) | 27 lines * testsuite/config/default.exp: New file. * testsuite/lib/libgomp.exp: New file. * testsuite/lib/libgomp.dg (load_gcc_lib, libgomp_init, libgomp_target_compile, libgomp_option_help, libgomp_option_proc, load_lib *, load_gcc_lib *): Move to libgomp.exp. (libgomp_load): Remove. * testsuite/lib/libgomp.exp (libgomp_init): Compute always_ld_library_path, not ld_library_path. Set additional_flags to -march=i486 for ilp32 x86_64-*-* and i386-*-* targets. (target_compile): Do not call libgomp_init. Append lang_library_path and lang_link_flags to options. * testsuite/libgomp.c/c.exp: Set DEFAULT_FLAGS to -O2. Set ld_library_path from always_ld_library_path. Set LD_LIBRARY_PATH here. * testsuite/libgomp.c++/c++.exp: Set ld_library_path from always_ld_library_path. Set LD_LIBRARY_PATH here. * testsuite/libgomp.fortran/fortran.exp: Ditto. * testsuite/libgomp.c/atomic-1.c: Set dg-options to "-O2 -march=pentium" for ilp32 x86 targets. Simplify check for CX8 flag. * testsuite/libgomp.c/atomic-2.c: Set dg-options to "-O2 -mcx16" for lp64 x86 targets. Do not check for SSE3 bit. Do not define bit_SSE3. * testsuite/libgomp.c/pr29947-1.c: Remove default dg-options. * testsuite/libgomp.c/pr29947-1.c: Ditto. * testsuite/libgomp.c/atomic-10.c: Ditto. ........ r123126 | froydnj | 2007-03-22 06:01:07 -0700 (Thu, 22 Mar 2007) | 2 lines * MAINTAINERS (Write After Approval): Add myself. ........ r123128 | uros | 2007-03-22 07:59:10 -0700 (Thu, 22 Mar 2007) | 6 lines * config/i386/i386.md (cmp<mode>): Rename from cmpsf and cmpdf. Macroize expander using SSEMODEF mode macro. Use SSE_FLOAT_MODE_P. (*cmpfp_<mode>): Rename from *cmpfp_sf and *cmpfp_df. Macroize insn pattern using X87MODEF12 mode macro. ........ r123129 | tobi | 2007-03-22 08:37:25 -0700 (Thu, 22 Mar 2007) | 8 lines fortran/ * decl.c (gfc_match_derived_decl): Reliably reject 'doubleprecision' and 'doublecomplex' as type names. testsuite/ * gfortran.dg/derived_name_1.f90: New. * gfortran.dg/derived_name_2.f: New. ........ r123130 | bkoz | 2007-03-22 09:43:41 -0700 (Thu, 22 Mar 2007) | 24 lines 2007-03-22 Benjamin Kosnik <bkoz@redhat.com> * testsuite/21_strings/headers/cstdlib/functions_std.cc: Without C99 support, _GLIBCXX_USE_WCHAR_T not defined, so dg-require-c-std. * testsuite/tr1/6_containers/headers/functional/synopsis.cc: Same. * testsuite/27_io/headers/iostream/synopsis.cc: Same. * testsuite/27_io/headers/streambuf/types_std.cc: Same. * testsuite/27_io/headers/sstream/types_std.cc: Same. * testsuite/27_io/headers/ostream/types_std.cc: Same. * testsuite/27_io/headers/istream/types_std.cc: Same. * testsuite/27_io/headers/iostream/types_std.cc: Same. * testsuite/27_io/headers/fstream/types_std.cc: Same. * testsuite/21_strings/headers/string/types_std.cc: Same. * testsuite/21_strings/headers/cwctype/functions_std.cc: Same. * testsuite/21_strings/headers/cwctype/types_std.cc: Same. * testsuite/21_strings/headers/cwchar/functions_std.cc: Same. * testsuite/21_strings/headers/cwchar/types_std.cc: Same. * include/Makefile.am (c_compatibility_headers): Add fenv.h. * include/Makefile.in: Regenerate. * configure.host: Update comment. ........ r123131 | pault | 2007-03-22 11:37:16 -0700 (Thu, 22 Mar 2007) | 17 lines 2006-03-22 Paul Thomas <pault@gcc.gnu.org> * trans-intrinsic.c (gfc_size_in_bytes): Remove function. (gfc_conv_intrinsic_array_transfer): Remove calls to previous. Explicitly extract TREE_TYPEs for source and mold. Use these to calculate length of source and mold, except for characters, where the se string_length is used. For mold, the TREE_TYPE is recalculated using gfc_get_character_type_len so that the result is correctly cast for character literals and substrings. Do not use gfc_typenode_for_spec for the final cast. 2006-03-22 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/transfer_array_intrinsic_3.f90: New test. ........ r123132 | mueller | 2007-03-22 12:44:09 -0700 (Thu, 22 Mar 2007) | 120 lines 2007-03-22 Dirk Mueller <dmueller@suse.de> * g++.old-deja/g++.brendan/warnings2.C: Don't use -pedantic. * g++.dg/other/static1.C: Remove stray semicolon. * g++.dg/other/init1.C: Likewise. * g++.dg/rtti/dyncast1.C: Likewise. * g++.dg/tree-ssa/pr17153.C: Likewise. * g++.dg/lookup/disamb1.C: Likewise. * g++.dg/lookup/scoped2.C: Likewise. * g++.dg/lookup/friend7.C: Likewise. * g++.dg/parse/parse4.C: Likewise. * g++.dg/parse/parse5.C: Likewise. * g++.dg/expr/pr29066.C: Likewise. * g++.dg/expr/cast4.C: Likewise. * g++.dg/tc1/dr193.C: Likewise. * g++.dg/tc1/dr213.C: Likewise. * g++.dg/abi/dcast1.C: Likewise. * g++.dg/abi/covariant2.C: Likewise. * g++.dg/inherit/covariant11.C: Likewise. * g++.dg/inherit/covariant9.C: Likewise. * g++.dg/inherit/covariant10.C: Likewise. * g++.dg/init/static3.C: Likewise. * g++.dg/init/init-ref3.C: Likewise. * g++.dg/init/ref10.C: Likewise. * g++.dg/template/meminit2.C: Likewise. * g++.dg/template/using9.C: Likewise. * g++.dg/template/friend9.C: Likewise. * g++.dg/template/ref1.C: Likewise. * g++.old-deja/g++.warn/inline.C: Likewise. * g++.old-deja/g++.robertl/eb91.C: Likewise. * g++.old-deja/g++.robertl/eb46.C: Likewise. * g++.old-deja/g++.robertl/eb34.C: Likewise. * g++.old-deja/g++.robertl/eb43.C: Likewise. * g++.old-deja/g++.robertl/eb26.C: Likewise. * g++.old-deja/g++.robertl/eb116.C: Likewise. * g++.old-deja/g++.brendan/copy5.C: Likewise. * g++.old-deja/g++.brendan/overload8.C: Likewise. * g++.old-deja/g++.brendan/overload11.C: Likewise. * g++.old-deja/g++.brendan/copy7.C: Likewise. * g++.old-deja/g++.brendan/crash38.C: Likewise. * g++.old-deja/g++.brendan/template11.C: Likewise. * g++.old-deja/g++.brendan/err-msg3.C: Likewise. * g++.old-deja/g++.brendan/crash50.C: Likewise. * g++.old-deja/g++.brendan/crash16.C: Likewise. * g++.old-deja/g++.jason/pmem2.C: Likewise. * g++.old-deja/g++.jason/parse9.C: Likewise. * g++.old-deja/g++.jason/byval2.C: Likewise. * g++.old-deja/g++.jason/overload8.C: Likewise. * g++.old-deja/g++.jason/pmf8.C: Likewise. * g++.old-deja/g++.jason/template33.C: Likewise. * g++.old-deja/g++.jason/return3.C: Likewise. * g++.old-deja/g++.jason/scoping2.C: Likewise. * g++.old-deja/g++.jason/virtual.C: Likewise. * g++.old-deja/g++.jason/opeq3.C: Likewise. * g++.old-deja/g++.jason/template27.C: Likewise. * g++.old-deja/g++.jason/synth6.C: Likewise. * g++.old-deja/g++.jason/ref8.C: Likewise. * g++.old-deja/g++.jason/offset1.C: Likewise. * g++.old-deja/g++.other/static20.C: Likewise. * g++.old-deja/g++.other/array1.C: Likewise. * g++.old-deja/g++.other/new3.C: Likewise. * g++.old-deja/g++.other/array2.C: Likewise. * g++.old-deja/g++.other/overload9.C: Likewise. * g++.old-deja/g++.other/cast6.C: Likewise. * g++.old-deja/g++.other/ptrmem8.C: Likewise. * g++.old-deja/g++.other/eh4.C: Likewise. * g++.old-deja/g++.other/using7.C: Likewise. * g++.old-deja/g++.other/init18.C: Likewise. * g++.old-deja/g++.other/dyncast1.C: Likewise. * g++.old-deja/g++.other/dyncast2.C: Likewise. * g++.old-deja/g++.other/dtor11.C: Likewise. * g++.old-deja/g++.pt/static11.C: Likewise. * g++.old-deja/g++.pt/crash19.C: Likewise. * g++.old-deja/g++.pt/overload12.C: Likewise. * g++.old-deja/g++.pt/crash46.C: Likewise. * g++.old-deja/g++.pt/mi1.C: Likewise. * g++.old-deja/g++.pt/vaarg3.C: Likewise. * g++.old-deja/g++.pt/nontype5.C: Likewise. * g++.old-deja/g++.pt/local5.C: Likewise. * g++.old-deja/g++.pt/typename2.C: Likewise. * g++.old-deja/g++.pt/explicit80.C: Likewise. * g++.old-deja/g++.pt/auto_ptr.C: Likewise. * g++.old-deja/g++.law/visibility1.C: Likewise. * g++.old-deja/g++.law/visibility2.C: Likewise. * g++.old-deja/g++.law/virtual2.C: Likewise. * g++.old-deja/g++.law/operators19.C: Likewise. * g++.old-deja/g++.law/parsing10.C: Likewise. * g++.old-deja/g++.law/visibility4.C: Likewise. * g++.old-deja/g++.law/operators4.C: Likewise. * g++.old-deja/g++.law/dtors2.C: Likewise. * g++.old-deja/g++.law/missed-error3.C: Likewise. * g++.old-deja/g++.law/visibility10.C: Likewise. * g++.old-deja/g++.law/scope3.C: Likewise. * g++.old-deja/g++.law/casts2.C: Likewise. * g++.old-deja/g++.law/code-gen5.C: Likewise. * g++.old-deja/g++.law/operators33.C: Likewise. * g++.old-deja/g++.law/friend4.C: Likewise. * g++.old-deja/g++.mike/pmf7.C: Likewise. * g++.old-deja/g++.mike/p5611.C: Likewise. * g++.old-deja/g++.mike/net37.C: Likewise. * g++.old-deja/g++.mike/p3570.C: Likewise. * g++.old-deja/g++.mike/p5718.C: Likewise. * g++.old-deja/g++.mike/net21.C: Likewise. * g++.old-deja/g++.mike/p1862.C: Likewise. * g++.old-deja/g++.mike/p4511.C: Likewise. * g++.old-deja/g++.mike/virt3.C: Likewise. * g++.old-deja/g++.mike/p16146.C: Likewise. * g++.old-deja/g++.mike/p1989.C: Likewise. * g++.old-deja/g++.mike/p5571.C: Likewise. * g++.old-deja/g++.gb/scope10.C: Likewise. * g++.old-deja/g++.abi/primary5.C: Likewise. * g++.old-deja/g++.abi/empty2.C: Likewise. * g++.old-deja/g++.abi/arraynew.C: Likewise. * g++.old-deja/g++.eh/vbase4.C: Likewise. * g++.old-deja/g++.eh/ptr1.C: Likewise. * g++.old-deja/g++.eh/cleanup1.C: Likewise. * g++.old-deja/g++.bob/template3.C: Likewise. * g++.old-deja/g++.bob/inherit1.C: Likewise. ........ r123133 | mueller | 2007-03-22 12:46:16 -0700 (Thu, 22 Mar 2007) | 2 lines Fix typos in ChangeLog ........ r123134 | jsm28 | 2007-03-22 13:38:27 -0700 (Thu, 22 Mar 2007) | 7 lines * c-incpath.c (add_sysroot_to_chain): New. (merge_include_chains): Add sysroot argument. Call add_sysroot_to_chain if sysrooted. (register_include_chains): Update call to merge_include_chains. * doc/cppopts.texi: Document use of '=' in include directory arguments. ........ r123135 | rth | 2007-03-22 14:33:45 -0700 (Thu, 22 Mar 2007) | 11 lines * defaults.h (OUTGOING_REG_PARM_STACK_SPACE): Provide default. * calls.c (compute_argument_block_size, expand_call, emit_library_call_value_1): Don't ifdef OUTGOING_REG_PARM_STACK_SPACE. * expr.c (block_move_libcall_safe_for_call_parm): Likewise. * function.c (STACK_DYNAMIC_OFFSET): Likewise. * doc/tm.texi (OUTGOING_REG_PARM_STACK_SPACE): Update. * config/alpha/unicosmk.h, config/bfin/bfin.h, config/iq2000/iq2000.h, config/mips/mips.h, config/mn10300/mn10300.h, config/mt/mt.h, config/pa/pa.h, config/rs6000/rs6000.h, config/score/score.h, config/spu/spu.h, config/v850/v850.h (OUTGOING_REG_PARM_STACK_SPACE): Set to 1. ........ r123136 | fxcoudert | 2007-03-22 15:51:50 -0700 (Thu, 22 Mar 2007) | 7 lines * trans-const.c (gfc_conv_mpz_to_tree): Allow integer constants larger than twice the width of a HOST_WIDE_INT. * gfortran.dg/no_range_check_1.f90: New test. ........ r123137 | manu | 2007-03-22 16:04:24 -0700 (Thu, 22 Mar 2007) | 15 lines 2007-03-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * c-lex.c (interpret_float): On overflow, emit pedantic warning if infinities not supported, otherwise emit warning if -Woverflow. On underflow, emit warning if -Woverflow. * real.c (real_from_string): Return -1 if underflow, +1 if overflow and 0 otherwise. * real.h (real_from_string): Update declaration testsuite/ * gcc.dg/float-range-4.c: New. * gcc.dg/float-range-1.c: Update. Test for a warning. * gcc.dg/float-range-3.c: New. * gcc.dg/float-range-5.c: New. ........ r123138 | daney | 2007-03-22 17:06:41 -0700 (Thu, 22 Mar 2007) | 14 lines * configure.ac: Add checks for getrlimit and sys/resource.h. * include/posix.h (_Jv_platform_close_on_exec): Remove. * include/config.h.in: Regenerate. * configure: Regenerate. * gnu/java/nio/channels/natFileChannelPosix.cc (open): Remove call to _Jv_platform_close_on_exec; * gnu/java/net/natPlainSocketImplPosix.cc (create): Likewise. (accept): Likewise. * gnu/java/net/natPlainDatagramSocketImplPosix.cc (create):Likewise. * java/lang/natPosixProcess.cc: Include sys/resource.h. (nativeSpawn): Close all file descriptors. Don't set FD_CLOEXEC on pipes. ........ r123139 | jvdelisle | 2007-03-22 17:13:19 -0700 (Thu, 22 Mar 2007) | 12 lines 2007-03-22 Jerry DeLisle <jvdelisle@gcc.gnu.org> * file_pos.c: Update Copyright year. * io/open.c (test_endfile): Restore test_endfile to fix SPEC regression. Update Copyright year. * io/io.h: Same. * io/unix.c (is_special): Add missing type for this function. Update Copyright year. * io/transfer.c (next_record_r): Restore test_endfile. (st_read): Fix whitespace. Update Copyright year ........ r123142 | gccadmin | 2007-03-22 17:17:46 -0700 (Thu, 22 Mar 2007) | 1 line Daily bump. ........ r123146 | rth | 2007-03-22 19:02:38 -0700 (Thu, 22 Mar 2007) | 33 lines * config/i386/i386.c (ix86_function_regparm): Early exit for 64-bit; don't increase local_regparm with force_align_arg_pointer check. (ix86_function_sseregparm): Assert 32-bit. (type_has_variadic_args_p): New. (ix86_return_pops_args): Early exit for 64-bit. Reindent; use type_has_variadic_args_p. (ix86_function_arg_regno_p): Use == 0 instead of ! test for eax. (init_cumulative_args): Remove TARGET_DEBUG_ARG. Remove zero_cum; use memset instead. Do maybe_vaarg check first; skip attribute tests if true; skip attribute tests for 64-bit. (construct_container): Remove TARGET_DEBUG_ARG. (function_arg_advance_32, function_arg_advance_64): Split out ... (function_arg_advance): ... from here. (function_arg_32, function_arg_64): Split out ... (function_arg): ... from here. (ix86_pass_by_reference): Tidy. (ix86_function_value_regno_p): Rearrange w/ switch on regno. (function_value_32): New, from parts of ix86_function_value and ix86_value_regno. (function_value_64): New, from parts of ix86_function_value and ix86_libcall_value. (ix86_function_value_1): New. (ix86_function_value, ix86_libcall_value): Use it. (return_in_memory_32, return_in_memory_64): Split out ... (ix86_return_in_memory): ... from here. (ix86_struct_value_rtx): Skip for 64-bit. (ix86_libcall_value, ix86_value_regno): Remove. (setup_incoming_varargs_64): Split out ... (ix86_setup_incoming_varargs): ... from here. (ix86_va_start): Remove TARGET_DEBUG_ARG. (legitimate_address_p, legitimize_address): Remove TARGET_DEBUG_ADDR. * config/i386/i386-protos.h (ix86_function_value): Remove. * config/i386/i386.opt (TARGET_DEBUG_ADDR, TARGET_DEBUG_ARG): Remove. ........ r123147 | jsm28 | 2007-03-22 19:51:56 -0700 (Thu, 22 Mar 2007) | 2 lines * acx.m4 (ACX_PKGVERSION, ACX_BUGURL): Define. ........ r123148 | gdr | 2007-03-22 19:58:46 -0700 (Thu, 22 Mar 2007) | 3 lines * error.c (dump_expr): Handle dependent names that designate types. * cxx-pretty-print.c (pp_cxx_unqualified_id): Handle TYPENAME_TYPE. ........ r123150 | mmitchel | 2007-03-22 21:31:21 -0700 (Thu, 22 Mar 2007) | 7 lines Mark Mitchell <mark@codesourcery.com> * call.c (standard_conversion): Use type_decays_to. Keep FCODE consistent with FROM. * g++.dg/expr/bitfield7.C: New test. ........ r123152 | mmitchel | 2007-03-22 21:37:40 -0700 (Thu, 22 Mar 2007) | 7 lines * parser.c (cp_parser_parse_and_diagnose_invalid_type_name): Do not consume tokens when failing. * g++.dg/template/error24.C: New test. * g++.dg/parse/tmpl-outside1.C: Tweak error markers. ........ r123153 | mmitchel | 2007-03-22 21:39:08 -0700 (Thu, 22 Mar 2007) | 3 lines * cp-tree.h (current_tempalte_parms): Improve documentation. * pt.c (current_template_args): Likewise. ........ r123154 | fxcoudert | 2007-03-23 00:00:56 -0700 (Fri, 23 Mar 2007) | 10 lines * arith.c (complex_pow): Rewrite to handle large power. (gfc_arith_power): Handle large power in the real and integer cases. * gfortran.dg/integer_exponentiation_3.F90: New test. * gfortran.dg/integer_exponentiation_4.f90: New test. * gfortran.dg/integer_exponentiation_5.F90: New test. ........ r123156 | gary | 2007-03-23 04:25:46 -0700 (Fri, 23 Mar 2007) | 7 lines 2007-03-23 Gary Benson <gbenson@redhat.com> * link.cc (_Jv_Linker::resolve_method_entry): Ensure that the argument types and the return type of the found method match those expected by the calling method. ........ r123159 | rth | 2007-03-23 09:34:51 -0700 (Fri, 23 Mar 2007) | 5 lines * config/i386/i386.c: Remove unnecessary function declarations. Move targetm definition, and all related macros, to the end of the file. Resort some functions to put definitions before uses. (ix86_attribute_table): Make static. Move to end of file. (ix86_gimplify_va_arg): Make static. ........ r123160 | hjl | 2007-03-23 10:12:32 -0700 (Fri, 23 Mar 2007) | 5 lines 2007-03-23 H.J. Lu <hongjiu.lu@intel.com> * acx.m4 (ACX_BUGURL): Replace "@" with "@@" for REPORT_BUGS_TEXI. ........ r123161 | brooks | 2007-03-23 11:40:46 -0700 (Fri, 23 Mar 2007) | 3 lines * MAINTAINERS (fortran 95 front end): Add myself. (c++ front end): whitespace fix. ........ r123162 | andreast | 2007-03-23 12:25:19 -0700 (Fri, 23 Mar 2007) | 7 lines 2007-03-23 Andreas Tobler <a.tobler@schweiz.org> * testsuite/lib/libgomp.exp (libgomp_init): Add -shared-libgcc for *-*-darwin*. * testsuite/libgomp.c++/c++.exp: Look for shared libstdc++ library and use it if found. ........ r123163 | hp | 2007-03-23 12:37:28 -0700 (Fri, 23 Mar 2007) | 4 lines * testsuite/27_io/basic_ostream/inserters_arithmetic/char/4402.cc (test02): Use std::numeric_limits<>::max() to get suitable large values. ........ r123164 | jsm28 | 2007-03-23 12:44:46 -0700 (Fri, 23 Mar 2007) | 20 lines * config/mips/mips.md (type, hazard, *movdi_32bit, *movdi_gp32_fp64, *movdi_64bit, *movsi_internal, movcc, *movhi_internal, *movqi_internal, *movsf_hardfloat, *movdf_hardfloat_64bit, *movdf_hardfloat_32bit, *movdf_softfloat, movv2sf_hardfloat_64bit, load_df_low, load_df_high, store_df_high, mthc1, mfhc1): Change xfer instruction type to mfc and mtc, as applicable. (movcc): Change first xfer to multi. * config/mips/24k.md, config/mips/4100.md, config/mips/4300.md, config/mips/5000.md, config/mips/5400.md, config/mips/5500.md, config/mips/5k.md, config/mips/7000.md, config/mips/9000.md, config/mips/generic.md: Change reservations using "xfer" to use "mfc,mtc". * config/mips/sb1.md (ir_sb1_mtxfer): Use "mtc" instead of using match_operand. (ir_sb1_mfxfer): Use "mfc" instead of using match_operand. * config/mips/sr71k.md (ir_sr70_xfer_from): Use "mfc" instead of examining mode. (ir_sr70_xfer_to): Use "mtc" instead of examining mode. ........ r123165 | paolo | 2007-03-23 15:30:09 -0700 (Fri, 23 Mar 2007) | 7 lines 2007-03-23 Paolo Carlini <pcarlini@suse.de> * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/4402.cc: Likewise use std::numeric_limits<>::max(). * testsuite/27_io/basic_ostream/inserters_arithmetic/char/4402.cc: Minor tweaks. ........ r123166 | paolo | 2007-03-23 15:30:18 -0700 (Fri, 23 Mar 2007) | 7 lines 2007-03-23 Paolo Carlini <pcarlini@suse.de> * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/4402.cc: Likewise use std::numeric_limits<>::max(). * testsuite/27_io/basic_ostream/inserters_arithmetic/char/4402.cc: Minor tweaks. ........ r123167 | steven | 2007-03-23 16:05:28 -0700 (Fri, 23 Mar 2007) | 34 lines * tracer.c (tracer): Don't take FLAGS argument. Assert we are in cfglayout mode. Don't go into and out of cfglayout mode. Link the blocks in the order of the constructed traces. (rest_of_handle_tracer): Adjust call to tracer. * loop-init.c (rtl_loop_init): Assert we are in cfglayout mode. Don't go into cfglayout mode. (rtl_loop_done): Don't go out of cfglayout mode. * cfglayout.c (relink_block_chain): New function, split out from... (fixup_reorder_chain): ...here. Remove redundant checking. (cfg_layout_finalize): Don't clear the header, footer, and aux fields here, move the code to do so to relink_block_chain. Likewise for free_original_copy_tables. * rtl.h (tracer): Update prototype. * bb-reorder.c (reorder_basic_blocks): Don't take FLAGS argument. Assert we are in cfglayout mode. Don't go into and out of cfglayout mode. Use relink_block_chain to serialize the CFG according to the new basic block order. Move targetm.cannot_modify_jumps_p check from here... (gate_handle_reorder_blocks): ...to here. (duplicate_computed_gotos): Move targetm.cannot_modify_jumps_p check from here... (gate_duplicate_computed_gotos): ...to here. (rest_of_handle_reorder_blocks): Don't see if anything has changed, something always changes when going into and out of cfglayout mode. Perform an expensive cfg cleanup while going into cfglayout mode. Always update liveness information on HAVE_conditional_execution targets. Reserialize the basic blocks and go out of cfglayout mode. * reg-stack.c: Include cfglayout.h. (rest_of_handle_stack_regs): Go into and out of cfglayout mode around the call to reorder_basic_blocks. * basic-block.h (reorder_basic_blocks): Update prototype. (relink_block_chain): New prototype. * passes.c (pass_outof_cfg_layout_mode): Move after cse2. ........ r123168 | steven | 2007-03-23 16:06:52 -0700 (Fri, 23 Mar 2007) | 2 lines Remove the patch from ChangeLog ........ r123169 | steven | 2007-03-23 16:10:37 -0700 (Fri, 23 Mar 2007) | 2 lines Fix accidental commit ........ r123170 | ian | 2007-03-23 16:17:02 -0700 (Fri, 23 Mar 2007) | 2 lines * tree-vrp.c (operand_less_p): Ignore fold overflow warnings. ........ r123171 | ian | 2007-03-23 16:19:25 -0700 (Fri, 23 Mar 2007) | 2 lines * tree-dump.c (dump_files): Correct comment. ........ r123172 | ian | 2007-03-23 16:21:46 -0700 (Fri, 23 Mar 2007) | 2 lines * fold-const.c (fold_binary): Correct warning for X - c >= X. ........ r123176 | gccadmin | 2007-03-23 17:17:13 -0700 (Fri, 23 Mar 2007) | 1 line Daily bump. ........ r123178 | zaks | 2007-03-23 17:33:20 -0700 (Fri, 23 Mar 2007) | 1 line * MAINTAINERS (Modulo Scheduler): Add myself. ........ r123180 | uros | 2007-03-24 00:13:17 -0700 (Sat, 24 Mar 2007) | 6 lines * testsuite/libffi.call/return_fl2.c (return_fl): Mark as static. Use 'volatile float sum' to create sum of floats to avoid false negative due to excess precision on ix86 targets. (main): Ditto. ........ r123181 | brooks | 2007-03-24 02:39:01 -0700 (Sat, 24 Mar 2007) | 6 lines * invoke.texi: Misc. small typo fixes. (-Wcharacter-truncation): Add. (-Wnonstd-intrinsics): Correct spelling. (-std=): Edit. (-fintrinsic-modules-path): Add. ........ r123182 | brooks | 2007-03-24 02:41:55 -0700 (Sat, 24 Mar 2007) | 2 lines * gfortran.h: Edit comments on GFC_STD_*. ........ r123183 | pault | 2007-03-24 05:30:58 -0700 (Sat, 24 Mar 2007) | 28 lines 2007-03-24 Paul Thomas <pault@gcc.gnu.org> * trans-expr.c (gfc_apply_interface_mapping_to_expr): Return int result that is non-zero if the expression is the function result. Only the characteristics of the result expression can be used in a procedure interface, so simplify LEN in situ using its character length. * trans-expr.c (gfc_conv_function_call): Do not use gfc_conv_expr_reference for actual pointer function with formal target because a temporary is created that does not transfer the reference correctly. Do not indirect formal pointer functions since it is the function reference that is needed. 2007-03-24 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/pointer_function_actual_1.f90: New test. * gfortran.dg/pointer_function_actual_2.f90: New test. * gfortran.dg/result_in_spec_1.f90: New test. ........ r123184 | pault | 2007-03-24 07:17:34 -0700 (Sat, 24 Mar 2007) | 28 lines 2007-03-24 Paul Thomas <pault@gcc.gnu.org> * trans-expr.c (gfc_apply_interface_mapping_to_expr): Return int result that is non-zero if the expression is the function result. Only the characteristics of the result expression can be used in a procedure interface, so simplify LEN in situ using its character length. * trans-expr.c (gfc_conv_function_call): Do not use gfc_conv_expr_reference for actual pointer function with formal target because a temporary is created that does not transfer the reference correctly. Do not indirect formal pointer functions since it is the function reference that is needed. 2007-03-24 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/pointer_function_actual_1.f90: New test. * gfortran.dg/pointer_function_actual_2.f90: New test. * gfortran.dg/result_in_spec_1.f90: New test. ........ r123185 | meissner | 2007-03-24 10:04:47 -0700 (Sat, 24 Mar 2007) | 1 line Add BID decimal support ........ r123186 | rth | 2007-03-24 12:28:37 -0700 (Sat, 24 Mar 2007) | 19 lines * config/ia64/constraints.md: New file. * config/ia64/predicates.md: Replace CONST_OK_FOR_? with satisfies_constraint_?. * config/ia64/ia64.c (ia64_move_ok, ia64_legitimate_constant_p, ia64_reload_gp, spill_restore_mem, ia64_expand_prologue, ia64_expand_epilogue, ia64_split_return_addr_rtx, ia64_rtx_costs, ia64_output_mi_thunk): Likewise. (ia64_const_ok_for_letter_p): Remove. (ia64_const_double_ok_for_letter_p): Remove. (ia64_extra_constraint): Remove. * config/ia64/ia64.h (REG_CLASS_FROM_LETTER): Remove. (CONST_OK_FOR_I, CONST_OK_FOR_J, CONST_OK_FOR_K, CONST_OK_FOR_L, CONST_OK_FOR_M, CONST_OK_FOR_N, CONST_OK_FOR_O, CONST_OK_FOR_P, CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_G, CONST_DOUBLE_OK_FOR_LETTER_P, EXTRA_CONSTRAINT, EXTRA_MEMORY_CONSTRAINT): Remove. * config/ia64/ia64.md: Include constriants.md. Replace CONST_OK_FOR_? with satisfies_constraint_?. ........ r123187 | fxcoudert | 2007-03-24 13:19:51 -0700 (Sat, 24 Mar 2007) | 6 lines * expr.c (check_dimension): Fix logic of comparisons. * gfortran.dg/bounds_check_6.f90: New test. ........ r123190 | gccadmin | 2007-03-24 17:17:27 -0700 (Sat, 24 Mar 2007) | 1 line Daily bump. ........ r123192 | pbrook | 2007-03-24 18:07:45 -0700 (Sat, 24 Mar 2007) | 6 lines 2007-03-24 Paul Brook <paul@codesourcery.com> * config/arm/lib1funcs.asm (div0): Use ARM_FUNC_START and do_push. * config/arm/linux-eabi.h: Remove legacy syscall hack. ........ r123193 | dje | 2007-03-24 19:41:54 -0700 (Sat, 24 Mar 2007) | 47 lines * config/rs6000/darwin.md (load_macho_picbase): Ignore operand 0. (load_macho_picbase_{si,di}): Convert to LR hard reg. (call_indirect_nonlocal_darwin64): Same. (call_nonlocal_darwin64): Same. (call_value_indirect_nonlocal_darwin64): Same. (call_value_nonlocal_darwin64): Same. (sibcall_nonlocal_darwin64): Same. (sibcall_value_nonlocal_darwin64): Same. (sibcall_symbolic_64): Same. (sibcall_value_symbolic_64): Same. * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Remove LR pseudo. (rs6000_emit_load_toc_table): Same. * config/rs6000/altivec.md (restore_world): Convert to LR hard reg. * config/rs6000/rs6000.md (mulh_call): Convert to LR hard reg. (mull_call): Same. (divss_call): Same. (divus_call): Same. (quoss_call): Same. (quous_call): Same. (load_toc_v4_pic_si): Same (load_toc_v4_PIC_1): Same. (load_toc_v4_PIC_1b): Same. (call_indirect_aix{32,64}): Same. (call_value_indirect_aix{32,64}): Same. (call): Same. (call_value): Same. (call_local{32,64}): Same. (call_value_local{32,64}): Same. (call_indirect_nonlocal_aix{32,64}): Same. (call_nonlocal_aix{32,64}): Same. (call_value_indirect_nonlocal_aix{32,64}): Same. (call_value_nonlocal_aix{32,64}): Same. (call_indirect_nonlocal_sysv<mode>): Same. (call_nonlocal_sysv<mode>): Same. (call_value_indirect_nonlocal_sysv<mode>): Same. (call_value_nonlocal_sysv<mode>): Same. (sibcall): Same. (sibcall_local{32,64}): Same. (sibcall_value_local{32,64}): Same. (sibcall_nonlocal_aix{32,64}): Same. (sibcall_value_nonlocal_aix{32,64}): Same. (sibcall_value_nonlocal_aix{32,64}): Same. (sibcall_nonlocal_sysv<mode>): Same. (sibcall_value): Same. (sibcall_value_nonlocal_sysv<mode>): Same. ........ r123194 | revitale | 2007-03-24 23:53:02 -0700 (Sat, 24 Mar 2007) | 1 line fix in tree-if-conv.c ........ r123195 | tkoenig | 2007-03-25 01:29:10 -0700 (Sun, 25 Mar 2007) | 12 lines 2007-03-25 Thomas Koenig <tkoenig@gcc.gnu.org> * intrinsics/reshape_generic.c (reshape_internal): Increment correct variable. 2007-03-25 Thomas Koenig <tkoenig@gcc.gnu.org> * gfortran.dg/reshape_transpose_1.f90: New test. ........ r123196 | fxcoudert | 2007-03-25 02:01:23 -0700 (Sun, 25 Mar 2007) | 10 lines * fortran/interface.c (check_operator_interface): Implement the standard checks on user operators extending intrinsic operators. * fortran/resolve.c (resolve_operator): If the ranks of operators don't match, don't error out but try the user-defined ones first. * gfortran.dg/operator_1.f90: New test. * gfortran.dg/operator_2.f90: New test. ........ r123197 | dorit | 2007-03-25 04:08:29 -0700 (Sun, 25 Mar 2007) | 5 lines * fold-const.c (fold_ternary): Handle CONSTRUCTOR in case BIT_FIELD_REF. ........ r123198 | dje | 2007-03-25 05:44:40 -0700 (Sun, 25 Mar 2007) | 5 lines * config/rs6000/rs6000.c (rs6000_emit_prologue): Always clobber LR in SImode for save_world. * config/rs6000/altivec.md (save_world, restore_world): Convert to LR hard reg. ........ r123199 | paolo | 2007-03-25 09:29:15 -0700 (Sun, 25 Mar 2007) | 4 lines 2007-03-25 Paolo Carlini <pcarlini@suse.de> * include/tr1/functional: Formatting fixes. ........ r123200 | tkoenig | 2007-03-25 13:17:51 -0700 (Sun, 25 Mar 2007) | 13 lines 2007-03-25 Thomas Koenig <tkoenig@gcc.gnu.org> * gfortran.dg/backspace_5.f: Initialize variable(s). * gfortran.dg/backspace_6.f: Likewise. * gfortran.dg/char_bounds_check_fail_1: Likewise. * gfortran.dg/direct_io_2.f90: Likewise. * gfortran.dg/write_back.f: Likewise. * gfortran.dg/write_rewind_2.f: Likewise. * gfortran.dg/write_rewind_1.f: Likewise. * gfortran.dg/write_rewind_2.f: Likewise. ........ r123203 | gccadmin | 2007-03-25 16:17:29 -0700 (Sun, 25 Mar 2007) | 1 line Daily bump. ........ r123205 | jvdelisle | 2007-03-25 20:23:15 -0700 (Sun, 25 Mar 2007) | 10 lines 2007-03-25 Jerry DeLisle <jvdelisle@gcc.gnu.org> *io/io.h: Add saved_pos to gfc_unit structure. *io/open.c (new_unit): Initialize saved_pos. *io/transfer.c (data_transfer_init): Set max_pos to value in saved_pos. (next_record_w): Fix whitespace. (finalze_transfer): Calculate max_pos for ADVANCE="no" and save it for later use. If not ADVANCE="no" set saved_pos to zero. ........ r123206 | jvdelisle | 2007-03-25 20:26:51 -0700 (Sun, 25 Mar 2007) | 2 lines Fix date in entry. ........ r123207 | jvdelisle | 2007-03-25 20:41:29 -0700 (Sun, 25 Mar 2007) | 5 lines 2007-03-25 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/fmt_t_4.f90: New test. ........ r123209 | uros | 2007-03-25 23:08:54 -0700 (Sun, 25 Mar 2007) | 3 lines * gfortran.dg/use_[567].f90: Use correct cleanup-modules dg directive. ........ r123210 | uros | 2007-03-26 01:34:01 -0700 (Mon, 26 Mar 2007) | 19 lines * reg-stack.c (replace_reg): Use IN_RANGE macro in gcc_assert(). * config/i386/constraints.md (define_constraint "I"): Use IN_RANGE macro. (define_constraint "J"): Ditto. (define_constraint "K"): Ditto. (define_constraint "M"): Ditto. (define_constraint "N"): Ditto. (define_constraint "O"): Ditto. * config/i386/predicates.md (define_predicate "register_no_elim_operand"): Use IN_RANGE macro. (define_predicate "const_0_to_3_operand"): Ditto. (define_predicate "const_0_to_7_operand"): Ditto. (define_predicate "const_0_to_15_operand"): Ditto. (define_predicate "const_0_to_63_operand"): Ditto. (define_predicate "const_0_to_255_operand"): Ditto. (define_predicate "const_1_to_31_operand"): Ditto. (define_predicate "const_2_to_3_operand"): Ditto. (define_predicate "const_4_to_7_operand"): Ditto. ........ r123214 | bkoz | 2007-03-26 03:41:41 -0700 (Mon, 26 Mar 2007) | 19 lines 2007-03-26 Benjamin Kosnik <bkoz@redhat.com> * include/c_compatibility/complex.h: Without __GXX_EXPERIMENTAL_CXX0X__ include_next complex.h. * include/c_compatibility/fenv.h: Same. * include/c_compatibility/inttypes.h: Same. * include/c_compatibility/stdbool.h: Same. * include/c_compatibility/stdint.h: Same. * include/c_compatibility/tgmath.h: Same. * include/tr1/cinttypes: Use include_next. * include/tr1/cstdint: Same. * include/tr1/cstdbool: Same. * acinclude.m4 (GLIBCXX_ENABLE_C99): Add check for tgmath.h * configure: Regenerate. * config.h.in: Same. ........ r123215 | jakub | 2007-03-26 06:23:17 -0700 (Mon, 26 Mar 2007) | 12 lines * config/i386/i386.c (IX86_BUILTIN_CMPNEPD, IX86_BUILTIN_CMPNESD): Remove. (IX86_BUILTIN_PSLLW128, IX86_BUILTIN_PSLLD128, IX86_BUILTIN_PSLLQ128, IX86_BUILTIN_PSRAW128, IX86_BUILTIN_PSRAD128, IX86_BUILTIN_PSRLW128, IX86_BUILTIN_PSRLD128, IX86_BUILTIN_PSRLQ128): Remove. (ix86_init_mmx_sse_builtins): Remove v8hi_ftype_v8hi_v2di and v4si_ftype_v4si_v2di. Remove __builtin_ia32_psllw128, __builtin_ia32_pslld128, __builtin_ia32_psllq128, __builtin_ia32_psrlw128, __builtin_ia32_psrld128, __builtin_ia32_psrlq128, __builtin_ia32_psraw128 and __builtin_ia32_psrad128 builtins. ........ r123216 | jakub | 2007-03-26 06:25:26 -0700 (Mon, 26 Mar 2007) | 15 lines * inclhack.def (glibc_c99_inline_1): Define __USE_EXTERN_INLINES if __extern_inline or __GNUC_GNU_INLINE__ is defined rather than __STDC_VERSION__ < 199901L. (glibc_c99_inline_2): Replace #if __STDC_VERSION__ < 199901L with #ifdef __GNUC_GNU_INLINE__. (glibc_c99_inline_3): Add select. Replace __STDC_VERSION__ >= 199901L with defined(__GNUC_STDC_INLINE__). (glibc_c99_inline_4): Change select, add second c_fix_arg. Replace #if __STDC_VERSION__ < 199901L with #ifdef __GNUC_GNU_INLINE__. * fixincl.x: Regenerated. * tests/base/bits/string2.h: Update. * tests/base/sys/sysmacros.h: Update. * tests/base/sys/stat.h: Update. ........ r123217 | uros | 2007-03-26 07:09:06 -0700 (Mon, 26 Mar 2007) | 4 lines * lib/gcc-dg.exp (gcc-dg-debug-runtest): Remove build file trivial.S. * gcc.dg/debug/dwarf2/dwarf2.exp: Ditto. ........ r123218 | hjl | 2007-03-26 08:37:47 -0700 (Mon, 26 Mar 2007) | 5 lines 2007-03-26 H.J. Lu <hongjiu.lu@intel.com> * acx.m4 (ACX_BUGURL): Set BUGURL first. Quote $BUGURL first when setting REPORT_BUGS_TEXI. ........ r123221 | daney | 2007-03-26 11:15:31 -0700 (Mon, 26 Mar 2007) | 10 lines * configure.ac: Remove checks for mktime, alloca, ioctl, gmtime_r, fork, execvp, execinfo.h, pthread_mutexattr_settype, pthread_mutexattr_setkind_np and sys/wait.h. * Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * include/config.h.in: Regenerate. * testsuite/Makefile.in: Regenerate. * configure: Regenerate. * gcj/Makefile.in: Regenerate. ........ git-svn-id: https://gcc.gnu.org/svn/gcc/branches/fixed-point@123228 138bc75d-0d04-0410-961f-82ee72b054a4
2007-03-06Merged revisions 122366-122590 via svnmerge from Chao-ying Fu
svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk ........ r122366 | brooks | 2007-02-27 02:19:59 -0800 (Tue, 27 Feb 2007) | 2 lines * Makefile.in (TEXI_GCCINSTALL_FILES): Add gcc-vers.texi dependency. ........ r122367 | hubicka | 2007-02-27 02:21:55 -0800 (Tue, 27 Feb 2007) | 5 lines * predict.c (last_basic_block_p): Remove. (tree_estimate_probability): Update return heuristic for commonized return blocks. ........ r122368 | schwab | 2007-02-27 02:45:58 -0800 (Tue, 27 Feb 2007) | 2 lines * Makefile.in (TEXI_GCCINSTALL_FILES): Add gcc-common.texi. ........ r122370 | rguenth | 2007-02-27 04:38:08 -0800 (Tue, 27 Feb 2007) | 5 lines 2007-02-27 Richard Guenther <rguenther@suse.de> * acinclude.m4: Adjust regular expression for ld version extraction. * configure: Regenerate. ........ r122371 | bernds | 2007-02-27 05:13:26 -0800 (Tue, 27 Feb 2007) | 3 lines * config/bfin/bfin.md (doloop_end): FAIL if counter reg isn't SImode. ........ r122372 | bernds | 2007-02-27 05:25:41 -0800 (Tue, 27 Feb 2007) | 14 lines * config/bfin/bfin.c: Include "cfglayout.h". (MAX_LSETUP_DISTANCE): New macro. (struct loop_info): New members incoming, incoming_src and incoming_dest. Delete member predecessor. (length_for_loop): New function. (bfin_optimize_loop): Handle more different loop structures. (bfin_discover_loop): Rework detection of predecessor blocks by examining incoming edges. (bfin_discover_loops, bfin_free_loops): New functions, broken out of bfin_reorg_loops. (bfin_reorder_loops): New function. (bfin_reorg_loops): Use these three new functions. ........ r122373 | bernds | 2007-02-27 05:44:10 -0800 (Tue, 27 Feb 2007) | 26 lines * config/bfin/bfin.h (enum reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add D0REGS through D7REGS. (CONSTRAINT_LEN): Add entry for 'q'. (REG_CLASS_FROM_CONSTRAINT): Renamed from REG_CLASS_FROM_LETTER. Add 'q' constraints. (REGNO_REG_CLASS): For R0 through R7, return corresponding regclass. (CLASS_LIKELY_SPILLED_P): True for R0, R1 and R2. * config/bfin/bfin.md (add_with_carry): New pattern. (s_or_u, su_optab, su_modifier): New code macros/attrs. (<su_optab>hisi_ll, <su_optab>hisi_lh, <su_optab>hisi_hl, <su_optab>hisi_hh): Renamed from mulhisi_xx patterns; macroized to support unsigned multiplies too. Removed incorrect commutativity from operand 1 constraint where appropriate. (usmulhisi_ull, usmulhisi_ulh, usmulhisi_uhl, usmulhisi_uhh): New patterns. (<su_optab>hisi_ll_lh, <su_optab>hisi_ll_hl, <su_optab>hisi_ll_hh, <su_optab>hisi_lh_hl, <su_optab>hisi_lh_hh, <su_optab>hisi_hl_hh): New patterns. (usmulhisi_ll_lul, usmulhisi_ll_luh, usmulhisi_ll_hul, usmulhisi_ll_huh, usmulhisi_lh_lul, usmulhisi_lh_luh, usmulhisi_lh_hul, usmulhisi_lh_huh, usmulhisi_hl_lul, usmulhisi_hl_luh, usmulhisi_hl_hul, usmulhisi_hl_huh, usmulhisi_hh_lul, usmulhisi_hh_luh, usmulhisi_hh_hul, usmulhisi_hh_huh): New patterns. ........ r122374 | bernds | 2007-02-27 05:55:56 -0800 (Tue, 27 Feb 2007) | 4 lines * config/bfin/bfin.md (ssashiftv2hi3, ssashifthi3, lshiftv2hi3, lshifthi3): Fix output template to use half reg for operand 2. ........ r122375 | rguenth | 2007-02-27 06:26:13 -0800 (Tue, 27 Feb 2007) | 5 lines 2007-02-27 Richard Guenther <rguenther@suse.de> * trans-array.c (structure_alloc_comps): Use correct type for null pointer constant. ........ r122376 | bernds | 2007-02-27 07:20:47 -0800 (Tue, 27 Feb 2007) | 4 lines * config/bfin/bfin.c (bfin_output_mi_thunk): Use R3 as scratch reg instead of R2. ........ r122377 | bernds | 2007-02-27 07:26:19 -0800 (Tue, 27 Feb 2007) | 3 lines * config/bfin/bfin.md (rotl16, rotlsi3, rotrsi3): New patterns. ........ r122378 | mmitchel | 2007-02-27 07:49:23 -0800 (Tue, 27 Feb 2007) | 6 lines * c-common.c (get_priority): Add check for SUPPORTS_INIT_PRIORITY. * lib/target-supports.exp (check_effective_target_init_priority): Remove Solaris special case. ........ r122379 | bernds | 2007-02-27 08:29:10 -0800 (Tue, 27 Feb 2007) | 8 lines * config/bfin/t-bfin-elf (LIB1ASMFUNCS): Add _umulsi3_highpart and _smulsi3_highpart. * config/bfin/lib1funcs.asm (___umulsi3_highpart, ___smulsi3_highpart): New functions. * config/bfin/bfin.md (smulsi3_highpart, umulsi3_highpart): New patterns. ........ r122380 | paolo | 2007-02-27 09:48:09 -0800 (Tue, 27 Feb 2007) | 16 lines 2007-02-27 Paolo Carlini <pcarlini@suse.de> * include/std/bitset: Do not include <ios>, <iosfwd> is enough. (operator>>(std::basic_istream<>&, bitset<>&)): Tweak, refer to ios_base as a base of basic_istream. * include/std/iomanip: Do not include <ios>, <iosfwd> + <bits/ios_base.h> is enough. * include/std/iosfwd: Do not include <cctype> here... * include/bits/locale_facets.h: ... do it here, when needed. * include/bits/ostream.tcc: Clean up, do not include <locale> here... * include/std/ostream: ... here instead. * include/bits/istream.tcc: Likewise for <locale> and <ostream>... * include/std/istream: ... here. * include/bits/sstream.tcc: Do not include <sstream>. ........ r122384 | jsm28 | 2007-02-27 12:32:13 -0800 (Tue, 27 Feb 2007) | 19 lines fixincludes: * mkheaders.in (incdir): Use include-fixed not include. gcc: * Makefile.in (PREPROCESSOR_DEFINES, test-protoize-simple): Define FIXED_INCLUDE_DIR. (stmp-int-hdrs, stmp-fixinc, install-headers): Use include-fixed for fixed headers and limits.h. (install-include-dir, install-headers-tar, install-headers-cpio, install-headers-cp, real-install-headers-tar, real-install-headers-cpio, real-install-headers-cp): Handle include-fixed as well as include. (install-mkheaders): Don't install files that go only in include not include-fixed. * cppdefault.c (cpp_include_defaults): Separate FIXED_INCLUDE_DIR from GCC_INCLUDE_DIR. * gcc.c (process_command): Remove special -BstageN/ handling. (do_spec_1): Add include-fixed directories. ........ r122385 | mrs | 2007-02-27 12:47:55 -0800 (Tue, 27 Feb 2007) | 3 lines * config/darwin-crt3.c: Avoid compilation when compiling for a kext multilib. ........ r122387 | uros | 2007-02-27 13:27:27 -0800 (Tue, 27 Feb 2007) | 13 lines * config/i386/sse.md (*mov<mode>_internal, *movv4sf_internal, *movv2df_internal): Enable pattern only for valid operand combinations. * config/i386/i386.c (ix86_modes_tieable_p): For SSE registers, tie only 128bit modes. For MMX registers, tie only 64bit modes. testsuite/ChangeLog: * gcc.target/i386/gfortran.dg/pr30970.c: New test. ........ r122388 | danglin | 2007-02-27 16:11:14 -0800 (Tue, 27 Feb 2007) | 5 lines * pa/predicates.md (move_src_operand): Allow zero for mode. * pa/pa.md: Fix constraints for zero CONST_DOUBLE in 64-bit DFmode move pattern. ........ r122392 | gccadmin | 2007-02-27 16:17:34 -0800 (Tue, 27 Feb 2007) | 1 line Daily bump. ........ r122396 | bernds | 2007-02-27 16:37:09 -0800 (Tue, 27 Feb 2007) | 4 lines * calls.c (emit_library_call_value_1): Handle partial registers correctly when building up CALL_INSN_FUNCTION_USAGE. ........ r122397 | kraai | 2007-02-27 16:56:22 -0800 (Tue, 27 Feb 2007) | 3 lines * configure: Regenerate. * configure.ac: Move statements after variable declarations. ........ r122398 | mrs | 2007-02-27 17:13:22 -0800 (Tue, 27 Feb 2007) | 2 lines Fixup whitespacing. ........ r122399 | bernds | 2007-02-27 17:34:10 -0800 (Tue, 27 Feb 2007) | 3 lines * g++.dg/inherit/thunk7.C: New test. ........ r122400 | bernds | 2007-02-27 18:03:41 -0800 (Tue, 27 Feb 2007) | 4 lines * lib/target-supports.exp (check_profiling_available): Not available for bfin-*-*. ........ r122401 | burnus | 2007-02-28 00:03:47 -0800 (Wed, 28 Feb 2007) | 13 lines 2007-02-28 Tobias Burnus <burnus@net-b.de> * primary.c (next_string_char): Correct reading a character after the delimiter. (match_string_constant): Print warning message only once. 2007-02-28 Tobias Burnus <burnus@net-b.de> * gfortran.dg/continuation_7.f90: New test. ........ r122402 | schwab | 2007-02-28 02:00:30 -0800 (Wed, 28 Feb 2007) | 4 lines * Make-lang.in (doc/gnat_ugn_unw.texi): Depend on $(gcc_docdir)/include/gcc-common.texi and gcc-vers.texi. (doc/gnat-style.info): Likewise. ........ r122409 | burnus | 2007-02-28 10:17:34 -0800 (Wed, 28 Feb 2007) | 21 lines 2007-02-28 Tobias Burnus <burnus@net-b.de> Paul Thomas <pault@gcc.gnu.org> * resolve.c (resolve_actual_arglist): Allow by-value arguments and non-default-kind for %VAL(). * trans-expr.c (conv_arglist_function): Allow non-default-kind for %VAL(). testsuite/ 2007-02-28 Tobias Burnus <burnus@net-b.de> Paul Thomas <pault@gcc.gnu.org> * c_by_val_1.f: Test %VAL() with non-default kind. * c_by_val.c: Ditto. * c_by_val_4.f: New test. ........ r122410 | hubicka | 2007-02-28 10:27:07 -0800 (Wed, 28 Feb 2007) | 4 lines * predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN, PRED_NEGATIVE_RETURN): Update outcomes. ........ r122411 | sandra | 2007-02-28 11:21:20 -0800 (Wed, 28 Feb 2007) | 47 lines 2007-02-28 Sandra Loosemore <sandra@codesourcery.com> * gcc/builtins.c (fold_builtin_call_list, fold_builtin_call_valist): Delete, and replace with... (fold_builtin_call_array): This. Update callers to use it. * gcc/fold-const.c (fold_build_call_list): Delete, and replace with... (fold_build_call_array): This. (fold_build_call_list_initializer): Delete, and replace with... (fold_build_call_array_initializer): This. * gcc/tree.h: Update declarations to reflect above changes. * gcc/c-typeck.c (build_function_call): Store converted arguments in a stack-allocated array instead of building a list. (convert_arguments): Store arguments in the array passed in as an argument, and return the actual number of arguments. * gcc/c-format.c: (check_function_format): Pass arguments in an array instead of a list. * gcc/c-common.c (check_function_nonnull): Likewise. (check_function_sentinel): Likewise. (check_function_arguments): Likewise. * gcc/c-common.h: Update declarations to reflect above changes. * gcc/cp/typeck.c (build_function_call): Store converted arguments in a stack-allocated array instead of building a list. (convert_arguments): Store arguments in the array passed in as an argument, and return the actual number of arguments. * gcc/cp/call.c (build_call): Delete, and replace with... (build_call_n, build_call_a): New. (build_op_delete_call): Rewrite to avoid constructing argument lists. (build_over_call): Store converted arguments in a stack-allocated array instead of building a list. (build_cxx_call): Pass arguments in an array instead of as a list. (build_java_interface_fn_ref): Rewrite to avoid constructing argument lists. * gcc/cp/tree.h: Update declarations to reflect above changes. * gcc/cp/method.c (use_thunk): Use a stack-allocated array to hold the arguments instead of a list. * gcc/cp/rtti.c (throw_bad_cast): Update call to cxx_call. (throw_bad_typeid): Likewise. (build_dynamic_cast_1): Likewise. * gcc/cp/init.c (build_builtin_delete_call): Use build_call_n. * gcc/cp/decl.c (expand_static_init): Likewise. * gcc/cp/except.c (cp_protect_cleanup_actions): Likewise. * gcc/cp/cp-gimplify.c (genericize_eh_spec_block): Likewise. (gimplify_must_not_throw_expr): Likewise. (cxx_omp_apply_fn): Use build_call_a. ........ r122413 | ghazi | 2007-02-28 13:53:07 -0800 (Wed, 28 Feb 2007) | 6 lines * gcc.dg/torture/builtin-frexp-1.c: On mips*-*-irix6* and powerpc*, use -funsafe-math-optimizations. * gcc.dg/torture/builtin-logb-1.c: Likewise. * gcc.dg/torture/builtin-modf-1.c: Likewise. ........ r122414 | rguenth | 2007-02-28 13:56:41 -0800 (Wed, 28 Feb 2007) | 10 lines 2007-02-28 Richard Guenther <rguenther@suse.de> * fold-const.c (fold_binary): Do not associate expressions with more than one variable for integer types that do not wrap. * gcc.dg/torture/pr30364-1.c: New testcase. * gcc.dg/torture/pr30364-2.c: Likewise. * gcc.dg/torture/pr30364-3.c: Likewise. ........ r122415 | echristo | 2007-02-28 14:46:01 -0800 (Wed, 28 Feb 2007) | 14 lines 2007-02-28 Eric Christopher <echristo@apple.com> Revert: 2006-12-07 Mike Stump <mrs@apple.com> * Makefile.def (dependencies): Add dependency for install-target-libssp and install-target-libgomp on install-gcc. * Makefile.in: Regenerate. 2007-02-28 Eric Christopher <echristo@apple.com> * Makefile.in (install-include-dir): Don't rm -rf include. ........ r122416 | echristo | 2007-02-28 14:51:59 -0800 (Wed, 28 Feb 2007) | 2 lines Missed this. See previous Change. ........ r122419 | gccadmin | 2007-02-28 16:17:17 -0800 (Wed, 28 Feb 2007) | 1 line Daily bump. ........ r122423 | burnus | 2007-03-01 00:19:09 -0800 (Thu, 01 Mar 2007) | 6 lines 2007-03-01 Tobias Burnus <burnus@net-b.de> * trans-intrinsic.c (gfc_conv_intrinsic_size): Compare pointers. ........ r122424 | paolo | 2007-03-01 01:03:30 -0800 (Thu, 01 Mar 2007) | 5 lines 2007-03-01 Paolo Carlini <pcarlini@suse.de> * include/bits/localefwd.h: Include <cctype>. ........ r122428 | rsandifo | 2007-03-01 01:58:12 -0800 (Thu, 01 Mar 2007) | 30 lines gcc/ * Makefile.in (rtlanal.o): Depend on tree.h. * rtl.h (offset_within_section_p, split_const): Declare. * rtlanal.c: Include tree.h. (offset_within_block_p): New function, taken from mips_offset_within_object_p. (split_const): New function, taken from mips_split_const. * config/m68k/m68k-protos.h (m68k_illegitimate_symbolic_constant_p): Declare. * config/m68k/m68k.h (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P): Define. (CONSTANT_ADDRESS_P): Only accept legitimate constants. (LEGITIMATE_CONSTANT_P): Check m68k_illegitimate_symbolic_constant_p. * config/m68k/m68k.c (TARGET_CANNOT_FORCE_CONST_MEM): Define. (m68k_illegitimate_symbolic_constant_p): New function. * config/m68k/m68k.md (movsi): Remove misleading predicates. If M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P and the source is a symbolic constant that might be outside the symbol's section, move the symbol first and then add the offset. * config/m68k/uclinux.h (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P): Override. * config/mips/mips.c (mips_split_const): Delete. (mips_offset_within_object_p): Delete. (mips_symbolic_constant_p): Use offset_within_section_p and split_const instead of mips_offset_within_object_p and mips_split_const. (mips_cannot_force_const_mem, mips_const_insns, mips_unspec_address) (mips_legitimize_const_move, print_operand_reloc) (mips_dangerous_for_la25_p): Use split_const instead of mips_split_const. ........ r122429 | uros | 2007-03-01 02:54:52 -0800 (Thu, 01 Mar 2007) | 4 lines * config/i386/i386.c (ix86_modes_tieable_p): Fix typo, use also size of mode1 to check for tieable modes in MMX case. ........ r122430 | ebotcazou | 2007-03-01 07:30:27 -0800 (Thu, 01 Mar 2007) | 5 lines * Makefile.in: Install library under $(MULTIOSDIR), not $(MULTISUBDIR). Install headers in multilib independent location. ........ r122432 | rth | 2007-03-01 08:30:38 -0800 (Thu, 01 Mar 2007) | 6 lines * expr.c (emit_move_complex_push): Export. (emit_move_complex_parts): Split out from ... (emit_move_complex): ... here. * expr.h (emit_move_complex_push, emit_move_complex_parts): Declare. * config/i386/i386.md (movcdi): New. ........ r122434 | ian | 2007-03-01 11:13:02 -0800 (Thu, 01 Mar 2007) | 12 lines cp/: * decl.c (check_tag_decl): Added new warning for typedef ignored when it precedes an otherwise valid non-typedef declaration. testsuite/: * warn/ignored_typedef.C: New. * init/ctor8.C: Added dg-warning to consume ignored typedef warning. * template/typedef2.C: Ditto. Moved dg-error onto its own line and added an explicit line number. ........ r122435 | rakdver | 2007-03-01 14:14:23 -0800 (Thu, 01 Mar 2007) | 8 lines * tree-ssa-loop-prefetch.c (determine_unroll_factor): Bound the unroll factor by the estimated number of iterations. (loop_prefetch_arrays): Do not prefetch in loops that iterate less than prefetch latency. * gcc.dg/tree-ssa/prefetch-4.c: New test. ........ r122437 | pbrook | 2007-03-01 14:58:40 -0800 (Thu, 01 Mar 2007) | 13 lines 2007-03-01 Paul Brook <paul@codesourcery.com> * config/arm/arm.c (arm_legitimate_index_p): Limit iWMMXt addressing modes to LDRD for DImode. (output_move_double): Fixup out of range ldrd/strd. (vfp_secondary_reload_class): Rename... (coproc_secondary_reload_class): ... to this. Add wb argument. * config/arm/arm.h (SECONDARY_OUTPUT_RELOAD_CLASS): Use coproc_secondary_reload_class for CLASS_IWMMXT. (SECONDARY_INPUT_RELOAD_CLASS): Ditto. * arm-protos.h (coproc_secondary_reload_class): Update prototype. ........ r122438 | brooks | 2007-03-01 15:47:02 -0800 (Thu, 01 Mar 2007) | 4 lines * Makefile.in: Add install-pdf target as copied from automake v1.10 rules. * testsuite/Makefile.in: Add dummy install-pdf target. ........ r122439 | brooks | 2007-03-01 15:50:30 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122440 | brooks | 2007-03-01 15:51:37 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122441 | brooks | 2007-03-01 15:52:38 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122442 | brooks | 2007-03-01 15:53:35 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122443 | brooks | 2007-03-01 15:54:44 -0800 (Thu, 01 Mar 2007) | 2 lines * Makefile.in: Add dummy install-pdf target. ........ r122444 | brooks | 2007-03-01 15:55:34 -0800 (Thu, 01 Mar 2007) | 2 lines * Makefile.in: Add dummy install-pdf target. ........ r122445 | brooks | 2007-03-01 15:56:24 -0800 (Thu, 01 Mar 2007) | 2 lines * Makefile.in: Add dummy install-pdf target. ........ r122446 | brooks | 2007-03-01 15:57:32 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122447 | brooks | 2007-03-01 15:58:28 -0800 (Thu, 01 Mar 2007) | 2 lines * Makefile.in: Add dummy install-pdf target. ........ r122448 | brooks | 2007-03-01 15:59:35 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122449 | brooks | 2007-03-01 16:00:52 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate ........ r122450 | brooks | 2007-03-01 16:01:53 -0800 (Thu, 01 Mar 2007) | 2 lines * Makefile.in: Add dummy install-pdf target. ........ r122451 | brooks | 2007-03-01 16:03:11 -0800 (Thu, 01 Mar 2007) | 4 lines * Makefile.am: Add install-pdf target as copied from automake v1.10 rules. * Makefile.in: Regenerate ........ r122452 | brooks | 2007-03-01 16:04:17 -0800 (Thu, 01 Mar 2007) | 3 lines * Makefile.in: Add install-html and install-pdf dummy targets. ........ r122453 | brooks | 2007-03-01 16:05:13 -0800 (Thu, 01 Mar 2007) | 2 lines * Makefile.in: Add dummy install-pdf target. ........ r122454 | brooks | 2007-03-01 16:14:33 -0800 (Thu, 01 Mar 2007) | 6 lines * Makefile.am: Add dummy install-pdf target. * Makefile.in: Regenerate * include/Makefile.in: Regenerate * testsuite/Makefile.in: Regenerate * gcj/Makefile.in: Regenerate ........ r122455 | brooks | 2007-03-01 16:15:32 -0800 (Thu, 01 Mar 2007) | 2 lines * Make-lang.in: Add dummy lang.install-pdf target. ........ r122456 | brooks | 2007-03-01 16:16:06 -0800 (Thu, 01 Mar 2007) | 2 lines * Make-lang.in: Add dummy lang.install-pdf target. ........ r122457 | brooks | 2007-03-01 16:16:37 -0800 (Thu, 01 Mar 2007) | 2 lines * Make-lang.in: Add dummy lang.install-pdf target. ........ r122460 | gccadmin | 2007-03-01 16:17:31 -0800 (Thu, 01 Mar 2007) | 1 line Daily bump. ........ r122461 | brooks | 2007-03-01 16:17:38 -0800 (Thu, 01 Mar 2007) | 3 lines * Make-lang.in: Add install-pdf target as copied from automake v1.10 rules. ........ r122463 | brooks | 2007-03-01 16:18:47 -0800 (Thu, 01 Mar 2007) | 3 lines * Make-lang.in: Add install-pdf target as copied from automake v1.10 rules. ........ r122464 | brooks | 2007-03-01 16:19:35 -0800 (Thu, 01 Mar 2007) | 3 lines * Make-lang.in: Add install-pdf target as copied from automake v1.10 rules. ........ r122465 | brooks | 2007-03-01 16:20:39 -0800 (Thu, 01 Mar 2007) | 3 lines * Make-lang.in: Add install-pdf target as copied from automake v1.10 rules. ........ r122466 | brooks | 2007-03-01 16:23:20 -0800 (Thu, 01 Mar 2007) | 5 lines * Makefile.in: Add install-pdf target as copied from automake v1.10 rules. * configure.ac: Add install-pdf to target list. * configure: Regenerate. ........ r122467 | brooks | 2007-03-01 16:28:09 -0800 (Thu, 01 Mar 2007) | 11 lines * configure.ac: Add "--with-pdfdir" configure option, which defines pdfdir variable. * Makefile.def (target=fixincludes): Add install-pdf to missing targets. (recursive_targets): Add install-pdf target. (flags_to_pass): Add pdfdir. * Makefile.tpl: Add pdfdir handling, add do-install-pdf target. * configure: Regenerate * Makefile.in: Regenerate ........ r122468 | jsm28 | 2007-03-01 17:55:06 -0800 (Thu, 01 Mar 2007) | 14 lines * target.h (init_dwarf_reg_sizes_extra): New target hook. * target-def.h (TARGET_INIT_DWARF_REG_SIZES_EXTRA): New default. * doc/tm.texi (TARGET_INIT_DWARF_REG_SIZES_EXTRA): Document. * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Call this hook. * config/rs6000/rs6000.c (TARGET_INIT_DWARF_REG_SIZES_EXTRA, rs6000_init_dwarf_reg_sizes_extra): New. * config/rs6000/linux-unwind.h (ppc_fallback_frame_state): Support SPE register high parts. testsuite: * gcc.target/powerpc/spe-unwind-1.c, g++.dg/eh/simd-5.C: New tests. ........ r122469 | bje | 2007-03-01 21:28:06 -0800 (Thu, 01 Mar 2007) | 5 lines 2007-03-02 Ben Elliston <bje@au.ibm.com> * config/dfp-bit.c (DFP_TO_INT): Initialise qval with "1.". ........ r122470 | aph | 2007-03-02 02:58:26 -0800 (Fri, 02 Mar 2007) | 6 lines 2007-03-02 Andrew Haley <aph@redhat.com> * sun/reflect/annotation/AnnotationInvocationHandler.java: Moved from Classpath to libgcj local. ........ r122471 | aph | 2007-03-02 03:01:19 -0800 (Fri, 02 Mar 2007) | 11 lines 2007-03-02 Andrew Haley <aph@redhat.com> * sun/reflect/annotation/AnnotationInvocationHandler.java: Whitespace only changes. 2007-03-02 Andrew Haley <aph@redhat.com> * sun/reflect/annotation/AnnotationInvocationHandler.java: Moved from Classpath to libgcj local. ........ r122472 | manu | 2007-03-02 03:09:52 -0800 (Fri, 02 Mar 2007) | 4 lines 2007-03-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * typeck.c (common_base_type): Delete unused function. ........ r122473 | uros | 2007-03-02 04:26:55 -0800 (Fri, 02 Mar 2007) | 15 lines * config/i386/i386.h (TUNEMASK): Redefine to use ix86_tune_mask. (ARCHMASK): Define. (TARGET_CMOVE): Use ARCHMASK. (TARGET_CMPXCHG): Ditto. (TARGET_CMPXCHG8B): Ditto. (TARGET_XADD): Ditto. (TARGET_BSWAP): Ditto. * config/i386/i386.c (ix86_tune_mask): New global variable. (ix86_arch_mask): Ditto. (override_options): Initialize ix86_tune_mask and ix86_arch_mask. Use ARCHMASK to clear MASK_NO_FANCY_MATH_387 in target_flags. ........ r122474 | rsandifo | 2007-03-02 04:37:31 -0800 (Fri, 02 Mar 2007) | 5 lines gcc/ * config/t-vxworks (LIBGCC2_INCLUDES): Pass -nostdinc. Use $MULTIDIR to choose between the kernel and RTP headers, and use $WIND_BASE and $WIND_USR to locate them. ........ r122475 | rsandifo | 2007-03-02 04:38:32 -0800 (Fri, 02 Mar 2007) | 3 lines gcc/ * config/t-vxworks (LIMITS_H_TEST): Define to true for VxWorks. ........ r122476 | uros | 2007-03-02 05:36:54 -0800 (Fri, 02 Mar 2007) | 4 lines * config/i386/i386.c (override_options): Put initialization of ix86_tune_mask and ix86_arch_mask to the correct place. ........ r122477 | bergner | 2007-03-02 07:57:08 -0800 (Fri, 02 Mar 2007) | 23 lines * config/rs6000/dfp.md: New file. * config/rs6000/rs6000.md: Include dfp.md. (add<mode>3_internal1): Disable for DECIMAL_FLOAT_MODE_P operands. * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Handle DDmode and TDmode decimal float modes in FP registers. (num_insns_constant): Likewise. (rs6000_legitimate_offset_address_p): Likewise. (rs6000_legitimize_address): Likewise. (rs6000_legitimize_reload_address): Likewise. (rs6000_legitimate_address): Likewise. (rs6000_emit_move): Likewise. (function_arg_boundary): Likewise. (function_arg_advance): Likewise. (rs6000_darwin64_record_arg_recurse): Likewise. (function_arg): Likewise. (rs6000_gimplify_va_arg): Likewise. (rs6000_split_multireg_move): Likewise. (rs6000_output_function_epilogue): Likewise. (rs6000_output_function_epilogue): Likewise. (rs6000_register_move_cost): Likewise. (rs6000_function_value): Likewise. (rs6000_libcall_value): Likewise. ........ r122478 | paolo | 2007-03-02 08:21:30 -0800 (Fri, 02 Mar 2007) | 18 lines 2007-03-02 Paolo Carlini <pcarlini@suse.de> * testsuite/thread/pthread1.cc: Include <pthread.h>. * testsuite/thread/pthread2.cc: Likewise. * testsuite/thread/pthread3.cc: Likewise. * testsuite/thread/pthread4.cc: Likewise. * testsuite/thread/pthread5.cc: Likewise. * testsuite/thread/pthread6.cc: Likewise. * testsuite/thread/pthread7-rope.cc: Likewise. 2007-03-02 Paolo Carlini <pcarlini@suse.de> * include/tr1/random (class random_device): Rework to use simple <cstdio> input, do not include <fstream>. * include/tr1/random.tcc (all inserters and extractors): Refer to ios_base as base class of basic_istream or basic_ostream. ........ r122479 | rth | 2007-03-02 09:49:58 -0800 (Fri, 02 Mar 2007) | 5 lines * expr.h (promoted_input_arg): Remove decl. * function.c (promoted_input_arg): Merge into ... * combine.c (setup_incoming_promotions): ... only caller. Rearrange to avoid double loop. ........ r122480 | ebotcazou | 2007-03-02 10:01:37 -0800 (Fri, 02 Mar 2007) | 4 lines * config/alpha/alpha.c (alpha_gp_save_rtx): Insert the insns at the entry by means of emit_insn_at_entry. ........ r122482 | paolo | 2007-03-02 10:11:15 -0800 (Fri, 02 Mar 2007) | 52 lines 2007-03-02 Paolo Carlini <pcarlini@suse.de> * testsuite/27_io/objects/wchar_t/9661-1.cc: Include <cstdlib>. * testsuite/27_io/objects/wchar_t/7.cc: Likewise. * testsuite/27_io/objects/char/9661-1.cc: Likewise. * testsuite/27_io/objects/char/7.cc: Likewise. * testsuite/27_io/basic_istream/ignore/wchar_t/2.cc: Likewise. * testsuite/27_io/basic_istream/ignore/char/2.cc: Likewise. * testsuite/27_io/basic_istream/getline/wchar_t/5.cc: Likewise. * testsuite/27_io/basic_istream/getline/char/5.cc: Likewise. * testsuite/27_io/basic_istream/extractors_arithmetic/char/ 11.cc: Likewise. * testsuite/27_io/basic_istream/extractors_character/wchar_t/ 4.cc: Likewise. * testsuite/27_io/basic_istream/extractors_character/char/ 4.cc: Likewise. * testsuite/27_io/basic_ostream/seekp/wchar_t/ 2346-fstream.cc: Likewise. * testsuite/27_io/basic_ostream/seekp/char/ 2346-fstream.cc: Likewise. * testsuite/27_io/basic_filebuf/seekoff/char/26777.cc: Likewise. * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-2.cc: Likewise. * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc: Likewise. * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise. * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise. * testsuite/27_io/basic_filebuf/close/char/4879.cc: Likewise. * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise. * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise. * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: Likewise. * testsuite/21_strings/basic_string/inserters_extractors/ wchar_t/10.cc: Likewise. * testsuite/21_strings/basic_string/inserters_extractors/ wchar_t/11.cc: Likewise. * testsuite/21_strings/basic_string/inserters_extractors/ char/10.cc: Likewise. * testsuite/21_strings/basic_string/inserters_extractors/ char/11.cc: Likewise. * testsuite/ext/pb_ds/example/trie_dna.cc: Likewise. * testsuite/ext/new_allocator/deallocate_global.cc: Likewise. * testsuite/ext/new_allocator/deallocate_local.cc: Likewise. * testsuite/performance/27_io/filebuf_sgetn_unbuf.cc: Likewise. * testsuite/performance/27_io/ifstream_getline.cc: Likewise. * testsuite/22_locale/locale/cons/4.cc: Likewise. * testsuite/22_locale/locale/cons/5.cc: Likewise. * testsuite/tr1/2_general_utilities/shared_ptr/thread/ mutex_weaktoshared.cc: Likewise. * testsuite/tr1/2_general_utilities/shared_ptr/thread/ default_weaktoshared.cc: Likewise. * testsuite/thread/pthread5.cc: Likewise. * testsuite/thread/pthread1.cc: Likewise. * testsuite/23_containers/deque/cons/assign/1.cc: Likewise. ........ r122483 | aph | 2007-03-02 11:05:57 -0800 (Fri, 02 Mar 2007) | 16 lines 2007-03-02 Andrew Haley <aph@redhat.com> * sun/reflect/annotation/AnnotationInvocationHandler.java: Generify in a few places. (equals): Rewrite to use invoke on local proxy. (deepToString): Remove most of it. (toString): Make nonstatic. (arrayClone): Delete. (coerce): New method. (invoke): Rewrite to handle gcj's structures correctly. * java/lang/natClass.cc (getDeclaredAnnotations): Fix test for null loader. * sources.am: Regenerate. * Makefile.am: Likewise. ........ r122484 | dnovillo | 2007-03-02 11:20:14 -0800 (Fri, 02 Mar 2007) | 17 lines * tree-ssa-structalias.c (could_have_pointers): Tidy. (get_constraint_for): Likewise. (do_structure_copy): Likewise. (find_func_aliases): Fix references to MODIFY_EXPR. (intra_create_variable_infos): Tidy. * tree-ssa-operands.c (add_virtual_operand): Add argument IS_CALL_SITE. When adding members of alias sets, if IS_CALL_SITE is true and the symbol is not call-clobbered, skip it. Adjust all callers. testsuite/ChangeLog * gcc.dg/tree-ssa/20070302-1.c: New test. ........ r122485 | aph | 2007-03-02 11:34:18 -0800 (Fri, 02 Mar 2007) | 16 lines 2007-03-02 Andrew Haley <aph@redhat.com> * sun/reflect/annotation/AnnotationInvocationHandler.java: Generify in a few places. (equals): Rewrite to use invoke on local proxy. (deepToString): Remove most of it. (toString): Make nonstatic. (arrayClone): Delete. (coerce): New method. (invoke): Rewrite to handle gcj's structures correctly. * java/lang/natClass.cc (getDeclaredAnnotations): Fix test for null loader. * sources.am: Regenerate. * Makefile.am: Likewise. ........ r122487 | ian | 2007-03-02 12:09:31 -0800 (Fri, 02 Mar 2007) | 35 lines Used signed infinities in VRP. * tree-vrp.c (uses_overflow_infinity): New static function. (supports_overflow_infinity): New static function. (make_overflow_infinity): New static function. (negative_overflow_infinity): New static function. (positive_overflow_infinity): New static function. (is_negative_overflow_infinity): New static function. (is_positive_overflow_infinity): New static function. (is_overflow_infinity): New static function. (overflow_infinity_range_p): New static function. (compare_values_warnv): New function split out of compare_values. (compare_value): Call it. (set_value_range_to_nonnegative): Add overflow_infinity parameter. Change caller. (vrp_expr_computes_nonnegative): Add strict_overflow_p parameter. Change callers. (vrp_expr_computes_nonzero): Likewise. (compare_ranges, compare_range_with_value): Likewise. (compare_name_with_value, compare_names): Likewise. (vrp_evaluate_conditional): Likewise. (set_value_range): Handle infinity (vrp_operand_equal_p, operand_less_p): Likewise. (extract_range_from_assert): Likewise. (vrp_int_const_binop): Likewise. (extract_range_from_binary_expr): Likewise. (extract_range_from_unary_expr): Likewise. (extract_range_from_comparison): Likewise. (extract_range_from_expr): Likewise. (dump_value_range): Likewise. (vrp_visit_cond_stmt, vrp_visit_phi_node): Likewise. (test_for_singularity): Likewise. (vrp_int_const_binop): Remove inline qualifier. (adjust_range_with_scev): Add comment. * tree-flow.h (vrp_evaluate_conditional): Update declaration. ........ r122488 | geoffk | 2007-03-02 13:07:37 -0800 (Fri, 02 Mar 2007) | 12 lines Index: gcc/cp/ChangeLog 2007-03-02 Geoffrey Keating <geoffk@apple.com> * g++spec.c (lang_specific_driver): Add -lstdc++ when compiling Objective-C++. Don't exit early if -shared-libgcc needs to be added. Index: gcc/testsuite/ChangeLog 2007-03-02 Geoffrey Keating <geoffk@apple.com> * g++.dg/other/darwin-minversion-1.C: New. ........ r122490 | simartin | 2007-03-02 14:09:20 -0800 (Fri, 02 Mar 2007) | 6 lines 2007-03-02 Simon Martin <simartin@users.sourceforge.net> * class.c (update_vtable_entry_for_fn): Properly handle invalid overriders for thunks. ........ r122491 | uros | 2007-03-02 14:28:02 -0800 (Fri, 02 Mar 2007) | 8 lines * config/i386/i386.h (TUNEMASK): Remove define. (ARCHMASK): Remove define. (TARGET_*): Use ix86_tune_mask variable instead of TUNEMASK. Use ix86_arch_mask variable instead of ARCHMASK. * config/i386/i386.c (override_options): Ditto. (standard_80387_constant_p): Ditto. ........ r122492 | ebotcazou | 2007-03-02 14:30:32 -0800 (Fri, 02 Mar 2007) | 6 lines * tree-sra.c (sra_walk_fns) <ldst>: Document new restriction. (sra_walk_modify_expr) <rhs_elt>: Treat the reference as a use if the lhs has side-effects. <lhs_elt>: Treat the reference as a use if the rhs has side-effects. ........ r122494 | mrs | 2007-03-02 14:40:15 -0800 (Fri, 02 Mar 2007) | 2 lines Remove some apparently obsolete maintainers. ........ r122495 | burnus | 2007-03-02 15:03:26 -0800 (Fri, 02 Mar 2007) | 13 lines 2007-03-02 Paul Thomas <pault@gcc.gnu.org> Tobias Burnus <burnus@net-b.de> * decl.c (gfc_match_entry): Remove erroneous entry result check. 2007-03-02 Paul Thomas <pault@gcc.gnu.org> Tobias Burnus <burnus@net-b.de> * gfortran.dg/entry_9.f90: New test. ........ r122499 | gccadmin | 2007-03-02 16:17:25 -0800 (Fri, 02 Mar 2007) | 1 line Daily bump. ........ r122502 | paolo | 2007-03-03 02:29:14 -0800 (Sat, 03 Mar 2007) | 35 lines 2007-03-03 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_algobase.h: Do not include <iosfwd>, <bits/functexcept.h> is enough; adjust __copy_aux declarations; remove declaration of copy overload for istreambuf_iterator / ostreambuf_iterator. * src/debug.cc: Include <cstdio>. * include/ext/rope: Include <iosfwd>. * include/bits/char_traits.h: Include <cstdio> and <cwchar>. * include/bits/stl_algo.h: Remove declaration of find overload for istreambuf_iterator. * include/std/queue: Clean up includes. * include/std/stack: Likewise. * include/std/memory: Likewise. * include/std/algorithm: Likewise. * include/std/vector: Likewise. * include/std/deque: Likewise. * include/std/list: Likewise. * include/bits/stl_tree.h: Likewise. * testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Adjust dg-error markers. * testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Likewise. * testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Likewise. * testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Likewise. * testsuite/23_containers/set/operators/1_neg.cc: Likewise. * testsuite/23_containers/map/operators/1_neg.cc: Likewise. * testsuite/20_util/auto_ptr/assign_neg.cc: Likewise. * include/ext/type_traits.h: Fix type of __max_digits10; clean up includes. * testsuite/util/testsuite_hooks.h: Do not include <cstddef>. * testsuite/util/testsuite_hooks.cc: Do it here. ........ r122503 | burnus | 2007-03-03 02:43:25 -0800 (Sat, 03 Mar 2007) | 18 lines 2007-03-03 Paul Thomas <pault@gcc.gnu.org> * check.c (dim_rank_check): The shape of subsections of assumed-size arrays is known. 2007-03-03 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/size_dim.f90: New test. -- Diese und die folgenden Zeilen werden ignoriert -- M gcc/testsuite/ChangeLog A gcc/testsuite/gfortran.dg/size_dim.f90 M gcc/fortran/ChangeLog M gcc/fortran/check.c ........ r122504 | bkoz | 2007-03-03 02:52:24 -0800 (Sat, 03 Mar 2007) | 7 lines 2007-03-03 Benjamin Kosnik <bkoz@redhat.com> * crossconfig.m4 (djgpp): Correct builtin defines to HAVE___, instead of HAVE____. * configure: Regenerate. ........ r122505 | manu | 2007-03-03 07:32:13 -0800 (Sat, 03 Mar 2007) | 15 lines 2007-03-03 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * parser.c (struct cp_parser): New IN_IF_STMT. (cp_parser_statement_seq_opt): Handle an unexpected 'else', returning if parsing the body of an 'if' statement or issuing an error and continuing. (cp_parser_selection_statement): Set IN_IF_STMT bit when parsing body of 'if'. (cp_parser_jump_statement): Mask new IN_IF_STMT bit. testsuite/ * g++.dg/parse/else.C: New. * g++.dg/parse/else-2.C: New. ........ r122506 | bkoz | 2007-03-03 08:06:59 -0800 (Sat, 03 Mar 2007) | 8 lines 2007-03-03 Benjamin Kosnik <bkoz@redhat.com> * include/debug/functions.h: Use cstddef. * testsuite/tr1/3_function_objects/headers/functional/ using_namespace_std_tr1_placeholders.cc: Fix include. ........ r122507 | fxcoudert | 2007-03-03 08:37:54 -0800 (Sat, 03 Mar 2007) | 7 lines * intrinsics/pack_generic.c (pack_internal): Add special checks for zero-sized arrays. * gfortran.dg/zero_sized_3.f90: New test. ........ r122508 | ghazi | 2007-03-03 09:12:28 -0800 (Sat, 03 Mar 2007) | 8 lines * c-pretty-print.c (pp_c_direct_abstract_declarator): Use fold_build2. * config/alpha/alpha.c (alpha_fold_builtin_zapnot, alpha_fold_vector_minmax): Likewise. * config/i386/i386.c (ix86_gimplify_va_arg): Likewise. * config/sparc/sparc.c (sparc_gimplify_va_arg): Likewise. ........ r122509 | ghazi | 2007-03-03 09:18:17 -0800 (Sat, 03 Mar 2007) | 4 lines * builtins.def (ATTR_MATHFN_FPROUNDING): Rely on flag_rounding_math, not flag_unsafe_math_optimizations. ........ r122510 | burnus | 2007-03-03 09:41:54 -0800 (Sat, 03 Mar 2007) | 6 lines 2007-03-03 Tobias Burnus <burnus@net-b.de> * gfortran.dg/c_by_val.c: Use int64_t instead of long to be more compatible with integer(kind=8). ........ r122511 | schwab | 2007-03-03 11:23:06 -0800 (Sat, 03 Mar 2007) | 3 lines * configure.ac (HAVE_AS_REL16): Move test back to correct place. * configure: Regenerate. ........ r122513 | paolo | 2007-03-03 11:36:20 -0800 (Sat, 03 Mar 2007) | 11 lines 2007-03-03 Paolo Carlini <pcarlini@suse.de> * include/bits/istream.tcc: Inhibit implicit instantiation of the _M_insert helpers. * include/bits/ostream.tcc: Likewise for _M_extract. * testsuite/27_io/basic_ostream/inserters_arithmetic/char/ 31031.cc: New. * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/ 31031.cc: Likewise. ........ r122516 | gccadmin | 2007-03-03 16:17:10 -0800 (Sat, 03 Mar 2007) | 1 line Daily bump. ........ r122520 | zippel | 2007-03-03 16:56:51 -0800 (Sat, 03 Mar 2007) | 7 lines * emit-rtl.c (find_auto_inc): New. (try_split): recreate REG_INC notes, Use regular for loops rather than whiles. * gcc.target/m68k/m68k.exp: New. * gcc.target/m68k/crash1.c: New. ........ r122521 | zippel | 2007-03-03 16:58:06 -0800 (Sat, 03 Mar 2007) | 3 lines * gcc.target/m68k/m68k.exp: New. * gcc.target/m68k/crash1.c: New. ........ r122522 | tkoenig | 2007-03-04 00:03:34 -0800 (Sun, 04 Mar 2007) | 44 lines 2007-03-04 Thomas Koenig <Thomas.Koenig@online.de> * m4/pow_m4: Use appropriate unsigned int type for u. * generated/pow_c10_i16.c: Regenerated. * generated/pow_c10_i4.c: Regenerated. * generated/pow_c10_i8.c: Regenerated. * generated/pow_c16_i16.c: Regenerated. * generated/pow_c16_i4.c: Regenerated. * generated/pow_c16_i8.c: Regenerated. * generated/pow_c4_i16.c: Regenerated. * generated/pow_c4_i4.c: Regenerated. * generated/pow_c4_i8.c: Regenerated. * generated/pow_c8_i16.c: Regenerated. * generated/pow_c8_i4.c: Regenerated. * generated/pow_c8_i8.c: Regenerated. * generated/pow_i16_i16.c: Regenerated. * generated/pow_i16_i4.c: Regenerated. * generated/pow_i16_i8.c: Regenerated. * generated/pow_i4_i16.c: Regenerated. * generated/pow_i4_i4.c: Regenerated. * generated/pow_i4_i8.c: Regenerated. * generated/pow_i8_i16.c: Regenerated. * generated/pow_i8_i4.c: Regenerated. * generated/pow_i8_i8.c: Regenerated. * generated/pow_r10_i16.c: Regenerated. * generated/pow_r10_i4.c: Regenerated. * generated/pow_r10_i8.c: Regenerated. * generated/pow_r16_i16.c: Regenerated. * generated/pow_r16_i4.c: Regenerated. * generated/pow_r16_i8.c: Regenerated. * generated/pow_r4_i16.c: Regenerated. * generated/pow_r4_i4.c: Regenerated. * generated/pow_r4_i8.c: Regenerated. * generated/pow_r8_i16.c: Regenerated. * generated/pow_r8_i4.c: Regenerated. * generated/pow_r8_i8.c: Regenerated. 2007-03-04 Thomas Koenig <Thomas.Koenig@online.de> * gfortran.dg/integer_exponentiation_1.f90: New test. ........ r122523 | fxcoudert | 2007-03-04 00:10:25 -0800 (Sun, 04 Mar 2007) | 7 lines * config/rs6000/rs6000.c (rs6000_function_value): Look at bit size instead of precision. * gfortran.dg/logical_3.f90: New test. ........ r122525 | tbm | 2007-03-04 04:57:13 -0800 (Sun, 04 Mar 2007) | 2 lines Remove spurious whitespace from error message. ........ r122528 | rakdver | 2007-03-04 08:23:31 -0800 (Sun, 04 Mar 2007) | 4 lines * tree-ssa-address.c (create_mem_ref): Do not put an expression containing a cast to the base of TARGET_MEM_REF. ........ r122529 | rakdver | 2007-03-04 08:34:31 -0800 (Sun, 04 Mar 2007) | 8 lines Add missing changelog entry: * config/i386/driver-i386.c (describe_cache, detect_caches_amd, decode_caches_intel, detect_caches_intel): New functions. (host_detect_local_cpu): Use detect_caches_amd and detect_caches_intel. ........ r122530 | burnus | 2007-03-04 10:44:24 -0800 (Sun, 04 Mar 2007) | 5 lines 2007-03-04 Tobias Burnus <burnus@net-b.de> * gfortran.dg/c_by_val.c: Use _Complex instead of a struct. ........ r122531 | sayle | 2007-03-04 11:03:13 -0800 (Sun, 04 Mar 2007) | 8 lines * fold-const.c (fold_comparison): Enforce type consistency when transforming ~X op ~Y to Y op X, and ~X op C to X op' ~C. * gcc.dg/pr30744-1.c: New test case. ........ r122532 | simartin | 2007-03-04 11:50:54 -0800 (Sun, 04 Mar 2007) | 5 lines 2007-03-04 Simon Martin <simartin@users.sourceforge.net> * tree.c (cp_tree_equal): Properly handle COMPLEX_CST trees. ........ r122533 | bkoz | 2007-03-04 14:59:49 -0800 (Sun, 04 Mar 2007) | 222 lines 2007-03-04 Benjamin Kosnik <bkoz@redhat.com> * acinclude.m4 (GLIBCXX_ENABLE_CHEADERS): Add c_global. * configure.host (c_model): Set default to c_global. * configure: Regenerate. * include/Makefile.am (c_compatibility_headers_extra): Make conditional on GLIBCXX_C_HEADERS_COMPATIBILITY. (c_base_headers_extra): Make conditional on GLIBCXX_C_HEADERS_EXTRA. (c_compatibility_headers): Make conditional on c/c_std/c_global. * include/Makefile.in: Regenerate. * docs/html/configopts.html: Add c_global information to --enable-cheaders. Eventually, "c_std" should mean "C" includes that are in namespace std, with optional C++ "C" compatibility includes to inject into global scope. And "c_global" should mean "C" includes that are in the global namespace, with C++ includes injecting into namespace std and no C++ "C" compatibility includes. 2007-03-04 Benjamin Kosnik <bkoz@redhat.com> * include/bits/c++config: Add _GLIBCXX_NAMEPACE_C. Add _GLIBCXX_NAMESPACE_ASSOCIATION_CXX200x. Add _GLIBCXX_TR1 as namespace macro. Add namespace associations for std::__cxx200x conditionally. * include/c_compatibility/assert.h: Correct doxygen markup, conditionalize the global injections on _GLIBCXX_NAMESPACE_C. * include/c_compatibility/ctype.h: Same. * include/c_compatibility/errno.h: Same. * include/c_compatibility/float.h: Same. * include/c_compatibility/iso646.h: Same. * include/c_compatibility/limits.h: Same. * include/c_compatibility/locale.h: Same. * include/c_compatibility/math.h: Same. * include/c_compatibility/setjmp.h: Same. * include/c_compatibility/signal.h: Same. * include/c_compatibility/stdarg.h: Same. * include/c_compatibility/stddef.h: Same. * include/c_compatibility/stdio.h: Same. * include/c_compatibility/stdlib.h: Same. * include/c_compatibility/string.h: Same. * include/c_compatibility/time.h: Same. * include/c_compatibility/wchar.h: Same. * include/c_compatibility/wctype.h: Same. * include/c_compatibility/complex.h: Add. * include/c_compatibility/fenv.h: Same. * include/c_compatibility/inttypes.h: Same. * include/c_compatibility/stdbool.h: Same. * include/c_compatibility/stdint.h: Same. * include/c_compatibility/tgmath.h: Same. * include/c_global/cassert: Add, use include_next, use C++0x features if -std=c++0x. * include/c_global/cctype: Same. * include/c_global/cerrno: Same. * include/c_global/cfloat: Same. * include/c_global/ciso646: Same. * include/c_global/climits: Same. * include/c_global/clocale: Same. * include/c_global/cmath: Same. * include/c_global/cmath.tcc: Same. * include/c_global/csetjmp: Same. * include/c_global/csignal: Same. * include/c_global/cstdarg: Same. * include/c_global/cstddef: Same. * include/c_global/cstdio: Same. * include/c_global/cstdlib: Same. * include/c_global/cstring: Same. * include/c_global/ctime: Same. * include/c_global/cwchar: Same. * include/c_global/cwctype: Same. * include/c_global/ccomplex: Add. * include/c_global/cfenv: Add. * include/c_global/cinttypes: Add. * include/c_global/cstdbool: Add. * include/c_global/cstdint: Add. * include/c_global/ctgmath: Add. * include/std/algorithm: Use C++0x features if -std=c++0x. * include/std/bitset: Same. * include/std/complex: Same. * include/std/deque: Same. * include/std/fstream: Same. * include/std/functional: Same. * include/std/iomanip: Same. * include/std/ios: Same. * include/std/iosfwd: Same. * include/std/iostream: Same. * include/std/istream: Same. * include/std/iterator: Same. * include/std/limits: Same. * include/std/list: Same. * include/std/locale: Same. * include/std/map: Same. * include/std/memory: Same. * include/std/numeric: Same. * include/std/ostream: Same. * include/std/queue: Same. * include/std/set: Same. * include/std/sstream: Same. * include/std/stack: Same. * include/std/stdexcept: Same. * include/std/streambuf: Same. * include/std/string: Same. * include/std/utility: Same. * include/std/valarray: Same. * include/std/vector: Same. * include/std/array: Add. * include/std/random: Add. * include/std/regex: Add. * include/std/tuple: Add. * include/std/type_traits: Add. * include/std/unordered_map: Add. * include/std/unordered_set: Add. * include/std/c++0x_warning.h: Add. * include/tr1/array: Switch namespaces based on _GLIBCXX_TR1. * include/tr1/boost_shared_ptr.h: Same. * include/tr1/cctype: Same. * include/tr1/cfenv: Same. * include/tr1/cinttypes: Same. * include/tr1/cmath: Same. * include/tr1/common.h: Same. * include/tr1/complex: Same. * include/tr1/cstdint: Same. * include/tr1/cstdio: Same. * include/tr1/cstdlib: Same. * include/tr1/cwchar: Same. * include/tr1/cwctype: Same. * include/tr1/functional: Same. * include/tr1/functional_hash.h: Same. * include/tr1/functional_iterate.h: Same. * include/tr1/hashtable: Same. * include/tr1/hashtable_policy.h: Same. * include/tr1/math.h: Same. * include/tr1/memory: Same. * include/tr1/random: Same. * include/tr1/random.tcc: Same. * include/tr1/ref_fwd.h: Same. * include/tr1/repeat.h: Same. * include/tr1/stdlib.h: Same. * include/tr1/tuple: Same. * include/tr1/tuple_iterate.h: Same. * include/tr1/type_traits: Same. * include/tr1/type_traits_fwd.h: Same. * include/tr1/unordered_map: Same. * include/tr1/unordered_set: Same. * include/tr1/utility: Same. * include/tr1/ccomplex: Add. * include/tr1/complex.h: Add. * include/tr1/regex: Add. * include/Makefile.am: Add C++0x headers, "C" compatibility headers. * include/Makefile.in: Regenerate. * testsuite/tr1/headers.cc: Add in regex/complex. * testsuite/17_intro/headers/c++200x/all.cc: New. * testsuite/17_intro/headers/c++200x/all_multiple_inclusion.cc: Same. * testsuite/17_intro/using_namespace_std_tr1_neg.cc: Same. * testsuite/18_support/headers/cstdbool/std_c++0x_neg.cc: Same. * testsuite/18_support/headers/cstdint/std_c++0x_neg.cc: Same. * testsuite/18_support/headers/cstdint/types_std_c++0x.cc: Same. * testsuite/20_util/enable_shared_from_this/requirements/ explicit_instantiation.cc: Same. * testsuite/20_util/headers/functional/types_std_c++0x.cc: Same. * testsuite/20_util/headers/functional/ using_namespace_std_placeholders.cc: Same. * testsuite/20_util/headers/memory/types_std_c++0x.cc: Same. * testsuite/20_util/headers/type_traits/std_c++0x_neg.cc: Same. * testsuite/20_util/headers/type_traits/types_std_c++0x.cc: Same. * testsuite/20_util/shared_ptr/requirements/ explicit_instantiation.cc: Same. * testsuite/20_util/weak_ptr/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/array/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/hash/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/headers/array/std_c++0x_neg.cc: Same. * testsuite/23_containers/headers/tuple/std_c++0x_neg.cc: Same. * testsuite/23_containers/headers/tuple/types_std_c++0x.cc: Same. * testsuite/23_containers/headers/unordered_map/std_c++0x_neg.cc: Same. * testsuite/23_containers/headers/unordered_set/std_c++0x_neg.cc: Same. * testsuite/23_containers/tuple/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/unordered_map/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/unordered_multimap/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/unordered_multiset/requirements/ explicit_instantiation.cc: Same. * testsuite/23_containers/unordered_set/requirements/ explicit_instantiation.cc: Same. * testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc: Same. * testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc: Same. * testsuite/26_numerics/headers/cfenv/types_std_c++0x.cc: Same. * testsuite/26_numerics/headers/cmath/types_std_c++0x.cc: Same. * testsuite/26_numerics/headers/cstdlib/types_std_c++0x.cc: Same. * testsuite/26_numerics/headers/ctgmath/std_c++0x_neg.cc: Same. * testsuite/26_numerics/headers/random/std_c++0x_neg.cc: Same. * testsuite/26_numerics/headers/random/types_std_c++0x.cc: Same. * testsuite/27_io/headers/cinttypes/std_c++0x_neg.cc: Same. * testsuite/27_io/headers/cinttypes/types_std_c++0x.cc: Same. * testsuite/28_regex/headers/regex/std_c++0x_neg.cc: Same. * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Rename ... * testsuite/tr1/8_c_compatibility/cinttypes/types.cc: Same. * testsuite/tr1/8_c_compatibility/cmath/types.cc: Same. * testsuite/tr1/8_c_compatibility/cstdint/types.cc: Same. * testsuite/tr1/8_c_compatibility/cstdlib/types.cc: Same. * testsuite/tr1/8_c_compatibility/cfenv/types_std_tr1.cc: ...to this. * testsuite/tr1/8_c_compatibility/cinttypes/types_std_tr1.cc: Same. * testsuite/tr1/8_c_compatibility/cmath/types_std_tr1.cc: Same. * testsuite/tr1/8_c_compatibility/cstdint/types_std_tr1.cc: Same. * testsuite/tr1/8_c_compatibility/cstdlib/types_std_tr1.cc: Same. ........ r122534 | manu | 2007-03-04 15:29:41 -0800 (Sun, 04 Mar 2007) | 10 lines 2007-03-04 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * c-common.c (convert_and_check): Don't give warnings for conversion if 'expr' already overflowed. testsuite/ * gcc.dg/multiple-overflow-warn-3.c: New. * g++.dg/warn/multiple-overflow-warn-3.C: New. ........ r122537 | gccadmin | 2007-03-04 16:17:09 -0800 (Sun, 04 Mar 2007) | 1 line Daily bump. ........ r122539 | paolo | 2007-03-04 17:45:14 -0800 (Sun, 04 Mar 2007) | 5 lines 2007-03-04 Paolo Carlini <pcarlini@suse.de> * testsuite/27_io/basic_ostream/inserters_arithmetic/ char/31031.cc: Include the right header. ........ r122541 | reichelt | 2007-03-05 00:26:23 -0800 (Mon, 05 Mar 2007) | 7 lines * typeck2.c (readonly_error): Always emit a hard error. Remove last argument. * cp-tree.h (readonly_error): Adjust prototype. * semantics.c (finish_asm_stmt): Adjust call to readonly_error. * typeck.c (build_unary_op): Likewise. (build_modify_expr): Likewise. ........ r122543 | victork | 2007-03-05 01:28:23 -0800 (Mon, 05 Mar 2007) | 7 lines 2007-03-05 Revital Eres <eres@il.ibm.com> * gcc.dg/var-expand1.c: New test. * loop-unroll.c (analyze_insn_to_expand_var): Add dump info when an accumulator is expanded. ........ r122544 | rguenth | 2007-03-05 02:57:09 -0800 (Mon, 05 Mar 2007) | 9 lines 2007-03-05 Richard Guenther <rguenther@suse.de> Dorit Nuzman <dorit@il.ibm.com> * tree-vectorizer.c (vectorize_loops): Bail out early if there are no loops in the function. Only print the number of vectorized loops if it is greater than zero or we are supposed to print information about unvectorized loops. ........ r122545 | aph | 2007-03-05 03:33:46 -0800 (Mon, 05 Mar 2007) | 6 lines 2007-03-03 Andrew Haley <aph@redhat.com> * java/lang/natClass.cc (parseAnnotationElement): Correct long annotations to read JV_CONSTANT_Long, not JV_CONSTANT_Double. ........ r122550 | tromey | 2007-03-05 06:29:47 -0800 (Mon, 05 Mar 2007) | 1 line Updating header files. Earlier change here seems to have been in error. ........ r122551 | rguenth | 2007-03-05 06:49:02 -0800 (Mon, 05 Mar 2007) | 5 lines 2007-03-05 Richard Guenther <rguenther@suse.de> * fold-const.c (fold_binary): Remove duplicate folding of comparison of non-null ADDR_EXPR against null. ........ r122552 | bernds | 2007-03-05 06:55:37 -0800 (Mon, 05 Mar 2007) | 15 lines libgcc/: * config.host (bfin*-linux-uclibc*): Set extra_parts. gcc/: * config.gcc (bfin*-uclinux*): Use t-bfin-uclinux. (bfin*-linux-uclibc*): New configuration. * config/linux.h (LINK_GCC_C_SEQUENCE_SPEC): Undefined before defining. * config/bfin/linux.h: New file. * config/bfin/libgcc-bfin.ver: New file. * config/bfin/t-bfin-uclinux: New file. * config/bfin/t-bfin-linux: New file. * config/bfin/uclinux.h (LINUX_TARGET_OS_CPP_BUILTINS): New macro. (TARGET_OS_CPP_BUILTINS): New macro. ........ r122553 | tromey | 2007-03-05 07:57:13 -0800 (Mon, 05 Mar 2007) | 23 lines * sources.am, Makefile.in: Rebuilt. * scripts/makemake.tcl (emit_package_rule): Don't omit VMProcess.java. * Makefile.am (nat_source_files): Added natVMProcess.cc. (inner_nat_headers): Added ImmediateEOFInputStream.h. * gcj/javaprims.h: Regenerated. * java/lang/System.java (EnvironmentMap): Now package-private. (EnvironmentMap(Map)): New constructor. (EnvironmentMap.put): New method. * java/lang/natWin32Process.cc (startProcess): Update. * java/lang/Win32Process.java (Win32Process): Added 'redirect' argument. (startProcess): Likewise. * java/lang/EcosProcess.java (EcosProcess): Added 'redirect' argument. * java/lang/natPosixProcess.cc (nativeSpawn): Handle redirection. * java/lang/PosixProcess.java (redirect): New field. (PosixProcess): Added 'redirect' argument. * java/lang/natRuntime.cc (execInternal): Added 'redirect' argument to Process creation. * java/lang/natVMProcess.cc: New file. * java/lang/ProcessBuilder.java: Removed. * java/lang/VMProcess.java: New file. ........ r122554 | aph | 2007-03-05 08:06:27 -0800 (Mon, 05 Mar 2007) | 14 lines 2007-03-05 Andrew Haley <aph@redhat.com> * java/lang/reflect/natVMProxy.cc (ncode_closure.meth): Delete. (generateProxyClass): Don't pass method to ncode. (run_proxy): Call _Jv_GetReflectedMethod to find the proxy method. * java/lang/reflect/Method.h: Rebuild. * java/lang/reflect/Method.java (internalGetParameterTypes, internalGetExceptionTypes): New methods. * headers.txt (class java/lang/reflect/Method): Declare _Jv_GetReflectedMethod. Be its friend. * java/lang/natClass.cc (_Jv_GetReflectedMethod): New method. * java/lang/Class.h: Declare it. Be its friend. ........ r122558 | rguenth | 2007-03-05 08:55:23 -0800 (Mon, 05 Mar 2007) | 5 lines 2007-03-05 Richard Guenther <rguenther@suse.de> * gcc.dg/tree-ssa/pr23777.c: New testcase. ........ r122559 | rguenth | 2007-03-05 09:03:14 -0800 (Mon, 05 Mar 2007) | 5 lines 2007-03-05 Richard Guenther <rguenther@suse.de> * gcc.dg/tree-ssa/vrp33.c: New testcase. ........ r122560 | tromey | 2007-03-05 09:27:44 -0800 (Mon, 05 Mar 2007) | 10 lines 2007-03-05 Mark Wielaard <mark@klomp.org> * java/lang/Character.java: Re-merged with Classpath. * java/lang/natString.cc (nativeCompareTo): Renamed from compareTo. * java/lang/StringBuilder.java: Re-merged with Classpath. * java/lang/String.java: Re-merged with Classpath. (nativeCompareTo): Renamed from compareTo. * java/lang/StringBuffer.java: Re-merged with Classpath. * jni.cc (_Jv_JNI_GetAnyMethodID): Split calls to append. ........ r122562 | ian | 2007-03-05 10:01:00 -0800 (Mon, 05 Mar 2007) | 4 lines * tree-vrp.c (extract_range_from_assert): Don't try to handle a half-range if the other side is an overflow infinity. ........ r122564 | doko | 2007-03-05 11:37:50 -0800 (Mon, 05 Mar 2007) | 5 lines 2007-03-05 Matthias Klose <doko@debian.org> * Makefile.am (gij_LDFLAGS): Use dbexecdir. * Makefile.in: Regnerate. ........ r122565 | ian | 2007-03-05 11:45:20 -0800 (Mon, 05 Mar 2007) | 17 lines * c.opt (fgnu89-inline): New option. * c-opts.c (c_common_post_options): Set default value for flag_gnu89_inline. * c-decl.c (WANT_C99_INLINE_SEMANTICS): Remove. (pop_scope): Check flag_gnu89_inline rather than flag_isoc99 for inline functions. (diagnose_mismatched_decls, merge_decls, start_decl): Likewise. (grokdeclarator, start_function): Likewise. * c-cppbuiltin.c (c_cpp_builtins): Define either __GNUC_GNU_INLINE__ or __GNUC_STDC_INLINE__. * doc/invoke.texi (Option Summary): Mention -fgnu89-inline. (C Dialect Options): Document -fgnu89-inline. * doc/extend.texi (Function Attributes): Explain what the gnu_inline attribute does. * doc/cpp.texi (Common Predefined Macros): Document __GNUC_GNU_INLINE__ and __GNUC_STDC_INLINE__. ........ r122566 | ian | 2007-03-05 11:48:39 -0800 (Mon, 05 Mar 2007) | 2 lines * gcc.c-torture/compile/pr31034.c: New test. ........ r122571 | mrs | 2007-03-05 12:15:52 -0800 (Mon, 05 Mar 2007) | 2 lines Undo deleting Matt, and update his address. ........ r122573 | doko | 2007-03-05 12:24:50 -0800 (Mon, 05 Mar 2007) | 5 lines 2007-03-05 Matthias Klose <doko@ubuntu.com> * doc/Makefile.am(man_MANS): Add $(TOOLS_MANFILES). * doc/Makefile.in: Regenerate. ........ r122576 | jsm28 | 2007-03-05 14:07:09 -0800 (Mon, 05 Mar 2007) | 4 lines * testsuite/lib/libstdc++.exp (v3-build_support): Use [transform "ar"] and [transform "ranlib"]. ........ r122580 | doko | 2007-03-05 15:23:18 -0800 (Mon, 05 Mar 2007) | 6 lines 2007-03-02 Mario Torre <neugens@limasoftware.net> committed for Petteri R<C3><83><C2><A4>ty <betelgeuse@gentoo.org> * configure.ac: fix broken build for gcj browser plugin ........ r122581 | ghazi | 2007-03-05 15:30:04 -0800 (Mon, 05 Mar 2007) | 7 lines * convert.c (convert_to_integer): Fix nearbyint/rint -> *lrint conversion. testsuite: * gcc.dg/torture/builtin-convert-4.c: New test. ........ r122587 | gccadmin | 2007-03-05 16:17:04 -0800 (Mon, 05 Mar 2007) | 1 line Daily bump. ........ r122590 | mrs | 2007-03-05 16:48:47 -0800 (Mon, 05 Mar 2007) | 21 lines * c-common.c (targetcm): Add. * c-opts.c (c_common_handle_option): Handle language specific target options. * opts.c (handle_option): Verify language for target options, if any are given. * opth-gen.awk: Add CL_LANG_ALL. * target-def.h (TARGET_HANDLE_C_OPTION): Add. (TARGETCM_INITIALIZER): Add. * target.h (struct gcc_targetcm): Add. (targetcm): Add. * targhooks.c (default_handle_c_option): Add. * targhooks.h (default_handle_c_option): Add. * doc/tm.texi (TARGET_HANDLE_C_OPTION): Add. * config/darwin.opt (iframework): Add. * config/darwin.h (TARGET_HAS_TARGETCM): Add. * config/darwin-c.c (handle_c_option): Add. (TARGET_HANDLE_C_OPTION): Add. (targetcm): Add. * doc/invoke.texi (Darwin Options): Add -iframework. ........ git-svn-id: https://gcc.gnu.org/svn/gcc/branches/fixed-point@122629 138bc75d-0d04-0410-961f-82ee72b054a4
2007-02-27Merged revisions ↵Chao-ying Fu
118217-118218,118222-118229,118262,118335-118336,118342,118345-118346,118348-118352,118354,118368-118370,118375-118376,118378-118383,118387-118388,118390,118395,118397-118402,118404,118406-118407,118410-118418,118421,118423,118427-118430,118432,118434,118436-118441,118443,118446,118453-118454,118456-118457,118462-118464,118466-118469,118471,118473,118476-118477,118480,118482,118485-118488,118490,118493,118495,118498-118499,118503-118505,118509-118514,118516-118517,118519-118522,118527,118529,118532-118535,118537,118539,118544,118548-118549,118551,118556-118557,118560-118561,118566,118569-118572,118574-118575,118579-118587,118589-118592,118594,118596,118598-118599,118601,118603-118606,118608-118610,118612,118618,118620,118623,118628-118629,118634-118638,118640-118646,118651-118653,118655-118658,118660,118663,118666-118667,118669,118671-118675,118677,118679-118681,118687-118688,118690,118704-118708,118710,118712,118714-118715,118717,118719-118720,118725,118734-118737,118739,118741,118743,118748-118753,118756,118758-118760,118763,118766,118770,118772,118774,118778-118779,118781-118782,118786-118790,118792,118795-118797,118799-118801,118803-118807,118809,118811,118815-118818,118822,118824,118828,118830-118834,118836-118840,118846-118847,118849-118850,118860,118862,118865-118867,118869-118875,118877-118878,118885-118886,118890-118893,118895-118899,118901-118902,118905-118909,118911,118913,118915-118916,118919-118920,118922-118923,118928-118929,118932-118938,118940-118945,118950-118951,118955-118958,118960,118962-118963,118965-118968,118970,118978-118981,118983-118986,118988-118990,118992,118994-118997,119000-119005,119007-119008,119020-119022,119029-119030,119032-119033,119035-119036,119038,119047,119051-119054,119058-119060,119080-119083,119085-119086,119089,119095-119098,119100,119104-119107,119109,119115,119117-119123,119125,119131-119132,119134,119136-119139,119141,119146-119150,119153-119155,119157-119161,119163-119164,119166-119167,119169,119171-119172,119174-119175,119177-119180,119182,119184-119187,119193-119195,119198,119200-119202,119207-119208,119212-119215,119217,119225-119227,119229-119231,119233-119237,119239,119241,119243-119245,119254-119255,119263-119266,119268-119269,119274-119275,119278-119279,119282-119283,119285-119286,119288-119291,119295,119297-119300,119302,119304-119306,119308-119310,119312-119313,119316-119317,119319,119321-119322,119325-119327,119332,119336-119337,119339-119344,119346-119347,119349,119351-119352,119359,119361,119364-119365,119367,119369-119373,119376-119377,119381,119383-119387,119389,119391-119394,119396,119398-119400,119405-119407,119410-119411,119413-119414,119417-119420,119423,119425-119426,119428-119432,119434,119436,119438-119439,119444,119451,119453,119455-119458,119460,119462-119464,119471-119474,119476,119484,119486,119488,119490-119492,119494,119496-119497,119501,119503,119506-119508,119512-119513,119516-119523,119525-119527,119529,119537-119538,119540-119541,119545,119548,119557,119559,119563,119565-119568,119570,119572,119574,119577,119580,119582,119584-119586,119588-119591,119593-119598,119602-119605,119607-119608,119610,119614,119617-119618,119621,119624,119626-119627,119629,119631-119632,119634,119636,119638-119641,119643-119644,119646-119647,119653-119654,119658-119659,119664-119665,119667-119668,119671-119675,119677,119679-119681,119683-119686,119689-119690,119692,119694,119698-119701,119703,119712,119715-119717,119719-119723,119725,119733,119736-119738,119741,119743,119747,119750-119756,119758-119759,119761-119762,119765-119766,119772,119774-119775,119777,119780-119781,119783-119784,119786-119787,119789-119791,119793,119798-119799,119804-119805,119808-119811,119813-119814,119816,119823,119825-119826,119828,119831-119833,119840-119841,119843,119846-119850,119853,119862,119864-119865,119868-119873,119875-119876,119878-119882,119884-119939,119946,119948-119949,119951-119955,119957,119959,119962,119965,119967-119970,119972-119976,119978,119980,119982-119983,119987-119988,119992,119995-119999,120001-120002,120004-120005,120007-120008,120010,120014-120015,120017,120021-120028,120030-120032,120034,120039,120041-120044,120046,120050-120051,120053,120055,120057,120059-120063,120065,120075,120077,120081-120082,120086-120087,120091-120094,120096,120098,120104-120105,120107-120108,120110-120113,120116,120118,120120,120123-120124,120126-120129,120131-120133,120138,120150,120152-120154,120158-120161,120163,120165-120166,120171-120172,120175,120180-120183,120185,120187,120190,120192-120195,120197-120201,120203-120206,120208-120209,120212-120215,120217,120220,120222-120225,120227-120230,120232,120243,120246-120250,120252,120254-120256,120258-120259,120265,120268-120269,120272-120278,120280-120281,120289-120292,120294,120298,120302-120305,120307,120309-120310,120320,120323-120326,120328,120330,120332,120335-120338,120346,120349-120350,120352,120354,120361-120367,120369-120372,120374-120377,120381-120382,120388-120393,120396-120400,120402-120403,120407,120411-120412,120414-120417,120419,120434-120436,120438,120446,120448,120459-120462,120464,120473-120476,120478-120481,120487-120491,120495,120497,120499,120506-120511,120513-120516,120518,120521,120523,120525-120526,120532,120534-120539,120541,120544,120548,120553-120557,120560-120563,120565,120568-120569,120575,120579,120582-120583,120598-120602,120604-120606,120614-120618,120623-120627,120629,120635,120641,120646,120656-120659,120661,120664-120666,120689-120692,120694,120701,120703-120704,120723-120725,120727,120729,120733-120734,120739-120742,120744,120748,120750,120752-120756,120758-120763,120765,120772,120775-120776,120780,120784-120787,120789,120794-120796,120799,120807,120809-120812,120814,120819-120821,120824,120826,120832,120838-120841,120843,120845,120847-120848,120850-120852,120856-120857,120862-120864,120866-120867,120871-120872,120876,120884-120888,120890,120907-120908,120932,120937,120939-120942,120944,120951,120955-120956,120968,120979,120981,120985-120989,120991,120996,121001,121003-121005,121014-121017,121019,121021,121028-121031,121038-121044,121046,121048,121050,121054-121055,121057,121059,121061-121062,121065-121070,121072,121075-121077,121080,121088,121090,121092-121096,121098,121103-121104,121109-121113,121120-121126,121134-121139,121148-121151,121153-121154,121158,121164,121166,121171,121175,121181,121187-121194,121196,121203-121204,121206-121208,121210,121214,121220-121224,121226,121228,121230,121232,121234,121238,121243-121244,121246-121249,121251,121258,121262-121263,121267,121271,121273-121276,121278-121279,121282-121283,121289-121293,121303-121304,121307,121312,121316,121320-121324,121326-121328,121330-121331,121333,121338,121343-121344,121346,121348,121350-121353,121355,121357,121365-121368,121370,121378,121380-121400,121402-121418,121427-121428,121431-121432,121434,121445-121448,121450,121452,121454,121459,121463,121465,121467,121469,121472,121474,121476,121478-121480,121482,121486,121488,121492,121501,121503,121505,121509,121512,121514,121516,121520-121521,121523-121527,121529,121532,121535-121540,121548,121556-121558,121560,121576,121585-121587,121589,121591,121595,121598-121599,121604,121610,121615,121618-121621,121623-121624,121626-121628,121630-121631,121634-121635,121637,121642,121645,121649-121650,121657-121658,121661-121662,121665,121667-121669,121673-121675,121677-121680,121685-121686,121690,121692-121693,121696,121701-121703,121705,121708,121712,121721-121722,121728-121730,121732,121738,121750,121752-121754,121756-121757,121759,121764,121772,121782-121784,121786,121788,121799,121803-121804,121806-121809,121811-121814,121823,121826,121832-121834,121836-121837,121841,121846,121848,121850,121854-121856,121858,121862,121868,121870-121872,121874,121880,121888,121890,121896-121899,121901,121904-121945,121949,121952,121954,121960-121965,121969-121971,121973,121975,121977-121978,121985-122298,122300-122355 via svnmerge from svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk ........ r121989 | gary | 2007-02-15 01:02:38 -0800 (Thu, 15 Feb 2007) | 6 lines 2007-02-14 Gary Benson <gbenson@redhat.com> * javax/management/ObjectName.java (toString): Return this item's canonical name. ........ r121991 | uros | 2007-02-15 02:21:38 -0800 (Thu, 15 Feb 2007) | 2 lines * config/i386/i386.md: Remove misleading comment. ........ r121992 | nickc | 2007-02-15 02:33:59 -0800 (Thu, 15 Feb 2007) | 3 lines * varasm.c (default_asm_output_anchor): Prepend * to . symbol in order to prevent it from being munged by the target. ........ r121994 | gary | 2007-02-15 05:05:06 -0800 (Thu, 15 Feb 2007) | 7 lines 2007-02-15 Gary Benson <gbenson@redhat.com> * javax/management/ObjectName.java: (getKeyPropertyList()): Remove cast and call to UnmodifiableMap. ........ r121995 | gary | 2007-02-15 06:42:23 -0800 (Thu, 15 Feb 2007) | 8 lines 2007-02-15 Gary Benson <gbenson@redhat.com> * gnu/javax/management/Server.java (registerMBean): Always register objects that implement the MBeanRegistration interface, and check the name returned by preRegister before using it. ........ r121997 | kgallowa | 2007-02-15 06:49:50 -0800 (Thu, 15 Feb 2007) | 3 lines 2007-02-15 Kyle Galloway <kgallowa@redhat.com> * gnu/classpath/jdwp/natVMVirtualMachine (getFrames): Implement. ........ r121998 | bonzini | 2007-02-15 07:07:59 -0800 (Thu, 15 Feb 2007) | 4 lines 2007-02-15 Paolo Bonzini <bonzini@gnu.org> * caller-save.c (save_call_clobbered_regs): Do not process sibcalls. ........ r121999 | kgallowa | 2007-02-15 07:08:27 -0800 (Thu, 15 Feb 2007) | 17 lines 2007-02-15 Kyle Galloway <kgallowa@redhat.com> * defineclass.cc (_Jv_ClassReader::read_one_code_attribute): Added LocalVariableTable attribute handling. (_Jv_ClassReader::pool_Utf8_to_char_arr): New method. * jvmti.cc (_Jv_JVMTI_GetLocalVariableTable): New method. * include/java-interp.h: Added local_var_table and local_var_table_len fields to _Jv_InterpMethod. (_Jv_InterpMethod::get_local_var_table): New method. * testsuite/libjava.jvmti/interp/getlocalvartable.java: New test. * testsuite/libjava.jvmti/interp/getlocalvartable.jar: New test. * testsuite/libjava.jvmti/interp/getlocalvartable.out: Output for new test. * testsuite/libjava.jvmti/interp/getlocalvartable.h: New test. * testsuite/libjava.jvmti/interp/natgetlocalvartable.cc: New test. ........ r122003 | bonzini | 2007-02-15 08:40:16 -0800 (Thu, 15 Feb 2007) | 12 lines 2007-02-15 Paolo Bonzini <bonzini@gnu.org> * jump.c (get_label_after): Delete. (get_label_before, delete_computation, delete_jump, delete_prior_computation, follow_jumps): Move... * reorg.c (delete_computation, delete_prior_computation): ... here... (get_label_before, delete_jump): ... making these static ... (follow_jumps): ... and simplifying this since it only runs after reload. * rtl.h (get_label_after, get_label_before, delete_jump, follow_jumps): Delete prototypes. ........ r122004 | gary | 2007-02-15 08:40:44 -0800 (Thu, 15 Feb 2007) | 8 lines 2007-02-15 Gary Benson <gbenson@redhat.com> * javax/management/AttributeList.java: Updated. * javax/management/MBeanServerDelegate.java: Likewise. * javax/management/MBeanServerFactory.java: Likewise. * javax/management/StandardMBean.java: Likewise. ........ r122006 | daney | 2007-02-15 09:03:49 -0800 (Thu, 15 Feb 2007) | 6 lines * gnu/java/net/PlainSocketImpl.h: Regenerate. * gnu/classpath/jdwp/VMVirtualMachine.h: Same. * gnu/classpath/jdwp/VMFrame.h: Same. * java/net/Socket.h: Same. * java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet.h: Same. ........ r122007 | daney | 2007-02-15 09:25:24 -0800 (Thu, 15 Feb 2007) | 74 lines gcc/java: 2007-02-15 David Daney <ddaney@avtrex.com> * Make-lang.in (JAVA_MANFILES): Add doc/gc-analyze.1. (java.maintainer-clean):Add gc-analyze.1. (.INTERMEDIATE): Add gc-analyze.pod. (gc-analyze.pod): New rule. (java.install-man): Install gc-analyze.1 * gcj.texi: Add new section for the gc-analyze program. libjava: 2007-02-15 Johannes Schmidt <jschmidt@avtrex.com> David Daney <ddaney@avtrex.com> * configure.ac: Create vm-tools-packages file. Add gnu/gcj/tools/gc_analyze to standard.omit and vm-tools-packages. Check for /proc/self/maps. * Makefile.am (bin_PROGRAMS): Added gc-analyze. (gc_analyze_SOURCES): New. (gc_analyze_LDFLAGS): New. (gc_analyze_LINK): New. (gc_analyze_LDADD): New. (gc_analyze_DEPENDENCIES): New. (nat_source_files): Add gnu/gcj/util/natGCInfo.cc. * Makefile.in: Regenerated. * configure: Regenerated. * include/config.h.in: Regenerated. * sources.am: Regenerated. * scripts/makemake.tcl: Don't include gc-analyze classes in libgcj. * gnu/gcj/tools/gc_analyze/SymbolLookup.java: New. * gnu/gcj/tools/gc_analyze/ObjectMap.java: New. * gnu/gcj/tools/gc_analyze/MemoryMap.java: New. * gnu/gcj/tools/gc_analyze/SymbolTable.java: New. * gnu/gcj/tools/gc_analyze/BlockMap.java: New. * gnu/gcj/tools/gc_analyze/BytePtr.java: New. * gnu/gcj/tools/gc_analyze/ItemList.java: New. * gnu/gcj/tools/gc_analyze/ToolPrefix.java: New. * gnu/gcj/tools/gc_analyze/MemoryAnalyze.java: New. * gnu/gcj/util/GCInfo.java: New. * gnu/gcj/util/GCInfo.h: New. * gnu/gcj/util/natGCInfo.cc: New. * gnu/gcj/util/UtilPermission.java: New. * gnu/gcj/util/UtilPermission.h: New. * classpath/tools/gnu/gcj/tools/gc_analyze/SymbolTable.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ObjectMap$ObjectItem.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryMap$RangeComparator.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BlockMap$PtrMarks.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryMap$Range.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BlockMap.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BytePtr.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$SubstringComparator.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ItemList.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ToolPrefix.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$1$Info.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$1.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$2.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$3.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$4.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryAnalyze$OptionParser.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/BlockMap$SizeKind.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/SymbolLookup.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/ObjectMap.class: New. * classpath/tools/gnu/gcj/tools/gc_analyze/MemoryMap.class: New. * classpath/lib/gnu/gcj/util/GCInfo.class: New. * classpath/lib/gnu/gcj/util/UtilPermission.class: New. libjava/classpath: 2007-02-15 David Daney <ddaney@avtrex.com> * tools/Makefile.am (TOOLS_ZIP): Add classes from vm-tools-packages. * tools/Makefile.in: Regenerated. ........ r122011 | aldyh | 2007-02-15 10:29:25 -0800 (Thu, 15 Feb 2007) | 3 lines * jump.c: Remove prototypes for delete_computation and delete_prior_computation. ........ r122014 | ebotcazou | 2007-02-15 12:51:29 -0800 (Thu, 15 Feb 2007) | 5 lines * expr.c (expand_expr_real_1) <normal_inner_ref>: If a temporary is made and the reference doesn't use the alias set of its type, do not create the temporary using that type. ........ r122015 | ebotcazou | 2007-02-15 13:43:28 -0800 (Thu, 15 Feb 2007) | 5 lines * gimplify.c (gimplify_modify_expr): During gimplification, attach a DECL on the rhs to a DECL on the lhs for debug info purposes if the former is ignored but not the latter. ........ r122016 | manu | 2007-02-15 14:15:20 -0800 (Thu, 15 Feb 2007) | 8 lines 2007-02-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org> cp/ * call.c (build_conditional_expr): Improve error message. testsuite/ * g++.dg/warn/pr28943.C: New. ........ r122017 | manu | 2007-02-15 14:31:17 -0800 (Thu, 15 Feb 2007) | 31 lines 2007-02-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * doc/invoke.texi (Warning Options): Remove -Werror-implicit-function-declaration. (Wimplicit-function-declaration): Update description. * opts.c (common_handle_option): Move handling of -Werror=* to... (enable_warning_as_error): ...here. * opts.h (enable_warning_as_error): Declare. * c-decl.c (implicit_decl_warning): Unless -Wno-implicit-function-declaration is given, emit a pedwarn if -std=c99 or emit a warning if -Wimplicit-function-declaration. * c.opt (Wimplicit-function-declaration): Replace mesg_implicit_function_declaration with warn_implicit_function_declaration. * c-opts.c (c_common_handle_option): -Werror-implicit-function-declaration is exactly equal as -Werror=implicit-function-declaration. (set_Wimplicit): Replace mesg_implicit_function_declaration with warn_implicit_function_declaration. (c_common_post_options): -Wimplict-function-declaration is enabled by default by -std=c99, otherwise is disabled by default. * c-objc-common.c (c_objc_common_init): Remove flawed logic. testsuite/ * gcc.dg/Wimplicit-function-declaration-c89.c: New. * gcc.dg/Wimplicit-function-declaration-c89-default.c: New. * gcc.dg/Wimplicit-function-declaration-c89-pedantic.c: New. * gcc.dg/Wimplicit-function-declaration-c99.c: New. * gcc.dg/Wimplicit-function-declaration-c99-pedantic.c: New. * gcc.dg/Werror-implicit-function-declaration.c: New. ........ r122018 | sandra | 2007-02-15 15:50:49 -0800 (Thu, 15 Feb 2007) | 862 lines 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * tree.h (enum tree_code_class): Add tcc_vl_exp. (VL_EXP_CLASS_P): New. (TREE_OPERAND_CHECK): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (TREE_OPERAND_CHECK_CODE): Likewise. (GIMPLE_STMT_OPERAND_CHECK): Likewise. (TREE_RTL_OPERAND_CHECK): Likewise. (tree_operand_check_failed): Make second parameter the whole tree instead of its code. Fixed callers. (VL_EXP_CHECK): New. (TREE_OPERAND_LENGTH): New. (VL_EXP_OPERAND_LENGTH): New. (CALL_EXPR_FN): New. (CALL_EXPR_STATIC_CHAIN): New. (CALL_EXPR_ARGS): New. (CALL_EXPR_ARG): New. (call_expr_nargs): New. (CALL_EXPR_ARGP): New. (build_nt_call_list): Declare. (build_vl_exp_stat): Declare. (build_vl_exp): New. (build_call_list): Declare. (build_call_nary): Declare. (build_call_valist): Declare. (build_call_array): Declare. (call_expr_arg): Declare. (call_expr_argp): Declare. (call_expr_arglist): Declare. (fold_build_call_list): Declare. (fold_build_call_list_initializer): Declare. (fold_call_expr): Declare to replace fold_builtin. (fold_builtin_fputs): Update to agree with modified definition. (fold_builtin_strcpy): Likewise. (fold_builtin_strncpy): Likewise. (fold_builtin_memory_chk): Likewise. (fold_builtin_stxcpy_chk): Likewise. (fold_builtin_strncpy_chk): Likewise. (fold_builtin_next_arg): Likewise. (fold_build_call_expr): Declare. (fold_builtin_call_list): Declare. (fold_builtin_call_valist): Declare. (build_call_expr): Declare. (validate_arglist): Update to agree with modified definition. (tree_operand_length): New. (call_expr_arg_iterator): New. (init_call_expr_arg_iterator): New. (next_call_expr_arg): New. (first_call_expr_arg): New. (more_call_expr_args_p): New. (FOR_EACH_CALL_EXPR_ARG): New. * tree.c (tree_code_class_string): Add entries for tcc_vl_exp and tcc_gimple_stmt. (tree_code_size): Update documentation. Use sizeof (tree) rather than sizeof (char *). (tree_size): Likewise. Add case for tcc_vl_exp. (tree_node_structure): Add case for tcc_vl_exp. (contains_placeholder_p): Likewise. (substitute_in_expr): Likewise. (substitute_placeholder_in_expr): Likewise. (stabilize_reference_1): Likewise. (build3_stat): Remove logic for CALL_EXPRs. Replace with assertion to diagnose breakage of this interface for constructing CALL_EXPRs. (build_nt): Add similar assertion here. (build_nt_call_list): New. (simple_cst_equal) <CALL_EXPR>: Rewrite to use new accessors. (iterative_hash_expr): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (get_callee_fndecl): Use new CALL_EXPR accessors. (tree_operand_check_failed): Change parameters to pass entire node instead of its code, so that we can call TREE_OPERAND_LENGTH on it. (process_call_operands): New. (build_vl_exp_stat): New. (build_call_list): New. (build_call_nary): New. (build_call_valist): New. (build_call_array): New. (walk_tree): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (call_expr_arglist): New. * tree.def (CALL_EXPR): Change representation of CALL_EXPRs to use tcc_vl_exp instead of a fixed-size tcc_expression. * doc/c-tree.texi (CALL_EXPR): Document new representation and accessors for CALL_EXPRs. (AGGR_INIT_EXPR): Likewise. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * builtins.c (c_strlen): Return NULL_TREE instead of 0. (expand_builtin_nonlocal_goto): Change parameter to be entire CALL_EXPR instead of an arglist. Use new CALL_EXPR accessors. (expand_builtin_prefetch): Likewise. (expand_builtin_classify_type): Likewise. (mathfn_built_in): Return NULL_TREE instead of 0. (expand_errno_check): Use new CALL_EXPR accessors. (expand_builtin_mathfn): Use new CALL_EXPR accessors and constructors. Return NULL_RTX instead of 0. (expand_builtin_mathfn_2): Likewise. (expand_builtin_mathfn_3): Likewise. (expand_builtin_interclass_mathfn): Likewise. (expand_builtin_sincos): Likewise. (expand_builtin_cexpi): Likewise. (expand_builtin_int_roundingfn): Likewise. (expand_builtin_int_roundingfn_2): Likewise. (expand_builtin_pow): Likewise. (expand_builtin_powi): Likewise. (expand_builtin_strlen): Pass entire CALL_EXPR as parameter instead of arglist, fixing callers appropriately. Use new CALL_EXPR accessors and constructors. Return NULL_RTX instead of 0. (expand_builtin_strstr): Likewise. (expand_builtin_strchr): Likewise. (expand_builtin_strrchr): Likewise. (expand_builtin_strpbrk): Likewise. (expand_builtin_memcpy): Likewise. (expand_builtin_mempcpy): Likewise. (expand_builtin_mempcpy_args): New. (expand_builtin_memmove): Similarly to expand_builtin_mempcpy. (expand_builtin_memmove_args): New. (expand_builtin_bcopy): Similarly to expand_builtin_mempcpy. (expand_movstr): Likewise. (expand_builtin_strcpy): Likewise. (expand_builtin_strcpy_args): New. (expand_builtin_stpcpy): Similarly to expand_builtin_strcpy. (expand_builtin_strncpy): Likewise. (expand_builtin_memset): Likewise. (expand_builtin_memset_args): New. (expand_builtin_bzero): Similarly to expand_builtin_memset. (expand_builtin_memcmp): Likewise. (expand_builtin_strcmp): Likewise. (expand_builtin_strncmp): Likewise. (expand_builtin_strcat): Likewise. (expand_builtin_strncat): Likewise. (expand_builtin_strspn): Likewise. (expand_builtin_strcspn): Likewise. (expand_builtin_args_info): Likewise. (expand_builtin_va_start): Likewise. (gimplify_va_arg_expr): Likewise. (expand_builtin_va_end): Likewise. (expand_builtin_va_copy): Likewise. (expand_builtin_frame_address): Likewise. (expand_builtin_alloca): Likewise. (expand_builtin_bswap): Likewise. (expand_builtin_unop): Likewise. (expand_builtin_fputs): Likewise. (expand_builtin_expect): Likewise. (expand_builtin_fabs): Likewise. (expand_builtin_copysign): Likewise. (expand_builtin_printf): Likewise. (expand_builtin_fprintf): Likewise. (expand_builtin_sprintf): Likewise. (expand_builtin_init_trampoline): Likewise. (expand_builtin_signbit): Likewise. (expand_builtin_fork_or_exec): Likewise. (expand_builtin_sync_operation): Likewise. (expand_builtin_compare_and_swap): Likewise. (expand_builtin_lock_test_and_set): Likewise. (expand_builtin_lock_release): Likewise. (expand_builtin): Likewise. (builtin_mathfn_code): Likewise. (fold_builtin_constant_p): Pass call arguments individually instead of as an arglist, fixing callers appropriately. Use new CALL_EXPR accessors and constructors. Return NULL_TREE instead of 0. (fold_builtin_expect): Likewise. (fold_builtin_classify_type): Likewise. (fold_builtin_strlen): Likewise. (fold_builtin_nan): Likewise. (integer_valued_real_p): Likewise. (fold_trunc_transparent_mathfn): Likewise. (fold_fixed_mathfn): Likewise. (fold_builtin_cabs): Likewise. (fold_builtin_sqrt): Likewise. (fold_builtin_cbrt): Likewise. (fold_builtin_cos): Likewise. (fold_builtin_cosh): Likewise. (fold_builtin_tan): Likewise. (fold_builtin_sincos): Likewise. (fold_builtin_cexp): Likewise. (fold_builtin_trunc): Likewise. (fold_builtin_floor): Likewise. (fold_builtin_ceil): Likewise. (fold_builtin_round): Likewise. (fold_builtin_int_roundingfn): Likewise. (fold_builtin_bitop): Likewise. (fold_builtin_bswap): Likewise. (fold_builtin_logarithm): Likewise. (fold_builtin_hypot): Likewise. (fold_builtin_pow): Likewise. (fold_builtin_powi): Likewise. (fold_builtin_exponent): Likewise. (fold_builtin_memset): Likewise. (fold_builtin_bzero): Likewise. (fold_builtin_memory_op): Likewise. (fold_builtin_bcopy): Deleted; call site changed to invoke fold_builtin_memory_op directly. (fold_builtin_strcpy): Similarly as for fold_builtin_memory_op. (fold_builtin_strncpy): Likewise. (fold_builtin_memcmp): Likewise. (fold_builtin_strcmp): Likewise. (fold_builtin_strncmp): Likewise. (fold_builtin_signbit): Likewise. (fold_builtin_copysign): Likewise. (fold_builtin_isascii): Likewise. (fold_builtin_toascii): Likewise. (fold_builtin_isdigit): Likewise. (fold_builtin_fabs): Likewise. (fold_builtin_abs): Likewise. (fold_builtin_fmin_fmax): Likewise. (fold_builtin_carg): Likewise. (fold_builtin_classify): Likewise. (fold_builtin_unordered_cmp): Likewise. (fold_builtin_0, fold_builtin_2, fold_builtin_3, fold_builtin_4): New functions split out from fold_builtin_1. (fold_builtin_n): New. (fold_builtin_varargs): New. (fold_builtin): Deleted. Most callers changed to use fold_call_expr instead. (fold_call_expr): New. (build_function_call_expr): Rewrite to use new helper function. (fold_builtin_call_list): New. (build_call_expr): New. (fold_builtin_call_valist): New. (rewrite_call_expr): New. (validate_arg): New. (validate_arglist): Change parameter to be entire CALL_EXPR instead of an arglist. Change return type to bool. Use new CALL_EXPR accessors. (fold_builtin_strstr): Pass call arguments individually instead of as an arglist, fixing callers appropriately. Use new CALL_EXPR accessors and constructors. Return NULL_TREE instead of 0. (fold_builtin_strchr): Likewise. (fold_builtin_strrchr): Likewise. (fold_builtin_strpbrk): Likewise. (fold_builtin_strcat): Likewise. (fold_builtin_strncat): Likewise. (fold_builtin_strspn): Likewise. (fold_builtin_strcspn): Likewise. (fold_builtin_fputs): Likewise. (fold_builtin_next_arg): Likewise. (fold_builtin_sprintf): Likewise. (expand_builtin_object_size): Use new CALL_EXPR accessors. Use NULL_RTX instead of 0. (expand_builtin_memory_chk): Likewise. (maybe_emit_chk_warning): Likewise. (maybe_emit_sprintf_chk_warning): Likewise. (fold_builtin_object_size): Pass call arguments individually instead of as an arglist, fixing callers appropriately. Use new CALL_EXPR accessors and constructors. Return NULL_TREE instead of 0. (fold_builtin_memory_chk): Likewise. (fold_builtin_stxcpy_chk): Likewise. (fold_builtin_strncpy_chk): Likewise. (fold_builtin_strcat_chk): Likewise. (fold_builtin_strcat_chk): Likewise. (fold_builtin_strncat_chk): Likewise. (fold_builtin_sprintf_chk): Likewise. (fold_builtin_snprintf_chk): Likewise. (fold_builtin_printf): Likewise. (fold_builtin_vprintf): Likewise. * fold-const.c (negate_expr_p): Use new CALL_EXPR accessors and constructors. (operand_equal_p): Add separate tcc_vl_exp/CALL_EXPR case. (make_range): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (extract_muldiv_1): Add VL_EXP_CLASS_P case. (fold_mathfn_compare): Use new CALL_EXPR accessors and constructors. (fold_unary): Likewise. (fold_binary): Likewise. (fold_ternary): Remove CALL_EXPR case, since they are no longer ternary expressions. (fold): Add logic for tcc_vl_exp. (fold_checksum_tree): Make it know about tcc_vl_exp. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (fold_build3_stat): Add assertion to flag broken interface for constructing CALL_EXPRs. (fold_build_call_list): New. (fold_build_call_list_initializer): New. (tree_expr_nonnegative_p): Use new CALL_EXPR accessors and constructors. (fold_strip_sign_ops): Likewise. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * tree-dump.c (dequeue_and_dump) <CALL_EXPR>: Use new CALL_EXPR accessors and dump arguments explicitly. * tree-pretty-print.c (do_niy): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (dump_generic_node): Use new CALL_EXPR accessors and walk arguments explicitly. (print_call_name): Use new CALL_EXPR accessors. * print-tree.c (print_node): Add case tcc_vl_exp. Print CALL_EXPR arguments explicitly instead of as a list. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * tree-vrp.c (stmt_interesting_for_vrp): Use new CALL_EXPR accessors. (vrp_visit_stmt): Likewise. * tree-ssa-loop-im.c (outermost_invariant_loop_expr): Make it know about tcc_vl_exp. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (force_move_till_expr): Likewise. * targhooks.c (default_external_stack_protect_fail): Use build_call_expr instead of build_function_call_expr. (default_hidden_stack_protect_fail): Likewise. * tree-complex.c (expand_complex_libcall): Use build_call_expr to build the call. * cgraphbuild.c (build_cgraph_edges): Use new CALL_EXPR accessors and walk arguments explicitly. * tree-ssa-loop-niter.c (simplify_replace_tree): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (expand_simple_operations): Likewise. (infer_loop_bounds_from_array): Use new CALL_EXPR accessors. * gengtype.c (adjust_field_tree_exp): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (walk_type): Tweak walking of arrays not to blow up on CALL_EXPRs. * optabs.c (expand_widen_pattern-expr): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * value_prof.c (tree_ic): Use new CALL_EXPR accessors. (tree_ic_transform): Likewise. (interesting_stringop_to_profile_p): Pass entire CALL_EXPR as parameter instead of arglist. Fix callers. (tree_stringop_fixed_value): Use new CALL_EXPR accessors. (tree_stringops_transform): Likewise. (tree_indirect_call_to_profile): Likewise. (tree_stringops_values_to_profile): Likewise. * tree-tailcall.c (find_tail_calls): Use new CALL_EXPR iterator. (eliminate_tail_call): Likewise. * ipa-cp.c (ipcp_update_callgraph): Use new CALL_EXPR accessors. * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop): Use TREE_OPERAND_LENGTH and generalize to handle any number of operands. (instantiate_parameters_1): Can't handle tcc_vl_exp here. * omp-low.c (build_omp_barrier): Use build_call_expr. (lower_rec_input_clauses): Likewise. (lower_reduction_clauses): Likewise. (expand_parallel_call): Likewise. (maybe_catch_exception): Likewise. (expand_omp_for_generic): Likewise. (expand_omp_for_static_nochunk): Likewise. (expand_omp_sections): Likewise. (lower_omp_single_simple): Likewise. (lower_omp_single_copy): Likewise. (lower_omp_master): Likewise. (lower_omp_ordered): Likewise. (lower_omp_critical): Likewise. * ipa-reference.c (check-call): Use new CALL_EXPR iterator. (scan_for_static_refs): Create tcc_vl_exp case for CALL_EXPR. * tree-gimple.c (is_gimple_call_addr): Fix doc. (recalculate_side_effects): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. Add tcc_vl_exp case. * tree-chrec.c (chrec_contains_symbols): Use TREE_OPERAND_LENGTH and generalize to handle any number of operands. (chrec_contains_undetermined): Likewise. (tree_contains_chrecs): Likewise. (evolution_function_is_invariant_rec_p): Use TREE_OPERAND_LENGTH. * cgraphunit.c (update_call_expr): Use new CALL_EXPR accessors. * tree-ssa-ccp.c (ccp_fold): Use new CALL_EXPR accessors. Use fold_call_expr instead of fold_builtin. (ccp_fold_builtin): Likewise. Update calls into builtins.c to match declarations there. (fold_stmt): Use new CALL_EXPR constructor and accessors. Doc updates. * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * ipa-pure-const.c (check_call): Use new CALL_EXPR accessors. (scan_function): Add case tcc_vl_exp for CALL_EXPR. * tree-stdarg.c (execute_optimize_stdarg): Use new CALL_EXPR accessors. * tree-ssa-math-opts.c (execute_cse_sincos_1): Use build_call_expr. (execute_cse_sincos): Use new CALL_EXPR accessors. * tree-ssa-alias.c (find_used_portions): Use new CALL_EXPR iterator. * gimple-low.c (lower_function_body): Use build_call_expr. (lower_builtin_setjmp): Likewise. * expr.c (emit_block_move_via_libcall): Use build_call_expr. (set_storage_via_libcall): Likewise. (safe_from_p): Add tcc_vl_exp case. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (expand_expr_real_1): Use new CALL_EXPR accessors. * tree-browser.c (store_child_info): Use TREE_OPERAND_LENGTH and generalize to handle any number of operands. (TB_parent_eq): Likewise. * predict.c (expr_expected_value): Use new CALL_EXPR accessors. (strip_builtin_expect): Likewise. * function.c (gimplify_parameters): Use build_call_expr. * tree-vectorizer.c (vect_is_simple_reduction): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * ipa-type-escape.c (check_call): Use new CALL_EXPR iterators. (scan_for_refs): Add case tcc_vl_exp for CALL_EXPR. * tree-data-ref.c (get_references_in_stmt): Use new CALL_EXPR iterators. * gimplify.c (build_stack_save_restore): Use build_call_expr. (gimplify_decl_expr): Likewise. (gimplify_call_expr): Use fold_call_expr instead of fold_builtin. Use new CALL_EXPR iterators. (gimplify_modify_expr_to_memcpy): Use build_call_expr. (gimplify_modify_expr_to_memset): Likewise. (gimplify_variable_sized_compare): Likewise. (gimplify_omp_atomic_fetch_op): Likewise. (gimplify_omp_atomic_pipeline): Likewise. (gimplify_omp_atomic_mutex): Likewise. (gimplify_function_tree): Likewise. * calls.c (alloca_call_p): Use new CALL_EXPR accessors. (call_expr_flags): Likewise. (expand_call): Likewise. * except.c (expand_builtin_eh_return_data_regno): Pass entire CALL_EXPR as parameter instead of arglist. Use new CALL_EXPR accessors. * coverage.c (create_coverage): Use build_call_expr. * tree-ssa-pre.c (expression_node_pool, list_node_pool): Delete. (temp_call_expr_obstack): New. (pool_copy_list): Delete. (temp_copy_call_expr): New. (phi_translate): Add case tcc_vl_exp for CALL_EXPR. Use new CALL_EXPR accessors. Get rid of special goo for copying argument lists and use temp_copy_call_expr instead. (valid_in_sets): Add case tcc_vl_exp for CALL_EXPR. Use new CALL_EXPR accessors. (create_expression_by_pieces): Likewise. Use build_call_array to construct the result instead of fold_build3. (create_value_expr_from): Add tcc_vl_exp. Delete special goo for dealing with argument lists. (init_pre): Remove references to expression_node_pool and list_node_pool. Init temp_call_expr_obstack instead. (fini_pre): Remove references to expression_node_pool and list_node_pool. * tree-sra.c (sra_walk_call_expr): Use new CALL_EXPR accessors and walk arguments explicitly instead of as a list. * tree-mudflap.c (mf_build_check_statement_for): Use build_call_expr. (mx_register_decls): Likewise. (mudflap_register_call): Likewise. (mudflap_finish_file): Likewise. * ipa-prop.c (ipa_callsite_compute_count): Use new CALL_EXPR accessors. (ipa_callsite_compute_param): Likewise. * tree-vect-patterns.c (vect_recog_pow_pattern): Use new CALL_EXPR accessors and constructor. * tree-nested.c (convert_nl_goto_reference): Use new CALL_EXPR accessors and constructor. (convert_tramp_reference): Likewise. (convert_call_expr): Likewise. (finalize_nesting_tree_1): Likewise. * tree-ssa.c (tree_ssa_useless_type_conversion): Use new CALL_EXPR accessors. * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Use build_call_expr. * tree-inline.c (initialize_inlined_parameters): Pass entire CALL_EXPR as parameter instead of arglist. Use new CALL_EXPR accessors. (estimate_num_insns_1): Use new CALL_EXPR accessors. (expand_call_inline): Tidy up call to initialize_inlined_parameters. * tree-vect-transform.c (vect_create_epilog_for_reduction): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (vectorizable_reduction): Likewise. (vectorizable_call): Use new CALL_EXPR iterators. (vectorizable_conversion): Use build_call_expr. (vectorizable_operation): Use TREE_OPERAND_LENGTH. (vect_gen_widened_results_half): Use build_call_expr. (vect_setup_realignment): Likewise. (vectorizable_live_operation): Use TREE_OPERAND_LENGTH. * tree-object-size.c (alloc_object_size): Use new CALL_EXPR accessors. (pass_through_call): Likewise. (compute_object_sizes): Likewise. Use fold_call_expr instead of fold_builtin. * tree-profile.c (tree_gen_interval_profiler): Use build_call_expr. (tree_gen_pow2_profiler): Likewise. (tree_gen_one_value_profiler): Likewise. (tree_gen_ic_func_profiler): Likewise. (tree_gen_average_profiler): Likewise. (tree_gen_ior_profiler): Likewise. * tree-ssa-structalias.c (get_constraint_for): Add case tcc_vl_exp. (find_func_aliases): Use new CALL_EXPR accessors. Add case tcc_vl_exp. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * tree-ssa-reassoc.c (get_rank): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * stmt.c (warn_if_unused_value): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * convert.c (convert_to_real): Use new CALL_EXPR accessors and constructor. (convert_to_integer): Likewise. * tree-ssa-operands.c (get_call_expr_operands): Use new CALL_EXPR accessors. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * config/alpha/alpha.c (alpha_expand_builtin): Use new CALL_EXPR accessors. * config/frv/frv.c (frv_expand_builtin): Likewise. * config/s390/s390.c (s390_expand_builtin): Likewise. * config/sparc/sparc.c (sparc_gimplify_va_arg): Use build_call_expr. (sparc_expand_builtin): Use new CALL_EXPR accessors. * config/i386/i386.c (ix86_function_ok_for_sibcall): Likewise. (ix86_expand_binop_builtin): Pass entire CALL_EXPR as parameter instead of arglist. Use new CALL_EXPR accessors on it. Fix callers. (ix86_expand_store_builtin): Likewise. (ix86_expand_unop_builtin): Likewise. (ix86_expand_unop1_builtin): Likewise. (ix86_expand_sse_compare): Likewise. (ix86_expand_sse_comi): Likewise. (ix86_expand_vec_init_builtin): Likewise. (ix86_expand_vec_ext_builtin): Likewise. (ix86_expand_vec_set_builtin): Likewise. (ix86_expand_builtin): Use new CALL_EXPR accessors. * config/sh/sh.c (sh_expand_builtin): Use new CALL_EXPR accessors. * config/c4x/c4x.c (c4x_expand_builtin): Likewise. * config/iq2000/iq2000.c (expand_one_builtin): Pass entire CALL_EXPR instead of arglist. Use new CALL_EXPR accessors. Fix callers. (iq2000_expand_builtin): Use new CALL_EXPR accessors. * config/rs6000/rs6000-c.c (altivec_build_resolved_builtin): Use build_call_expr. * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Likewise. (rs6000_expand_unop_builtin): Pass entire CALL_EXPR instead of arglist. Use new CALL_EXPR accessors. Fix callers. (altivec_expand_abs_builtin): Likewise. (rs6000_expand_binop_builtin): Likewise. (altivec_expand_predicate_builtin): Likewise. (altivec_expand_lv_builtin): Likewise. (spe_expand_stv_builtin): Likewise. (altivec_expand_stv_builtin): Likewise. (rs6000_expand_ternop_builtin): Likewise. (altivec_expand_ld_builtin): Use new CALL_EXPR accessors. (altivec_expand_st_builtin): Likewise. (altivec_expand_dst_builtin): Likewise. (altivec_expand_vec_init_builtin): Pass entire CALL_EXPR instead of arglist. Use new CALL_EXPR accessors. Fix callers. (altivec_expand_vec_set_builtin): Likewise. (altivec_expand_vec_ext_builtin): Likewise. (altivec_expand_builtin): Use new CALL_EXPR accessors. (spe_expand_builtin): Likewise. (spe_expand_predicate_builtin): Pass entire CALL_EXPR instead of arglist. Use new CALL_EXPR accessors. Fix callers. (spe_expand_evsel_builtin): Likewise. (rs6000_expand_builtin): Use new CALL_EXPR accessors. VCFUX and FCFSX cases must construct whole new CALL_EXPR, not just arglist. * config/arm/arm.c (arm_expand_binop_builtin): Pass entire CALL_EXPR instead of arglist. Use new CALL_EXPR accessors. Fix callers. (arm_expand_unop_builtin): Likewise. (arm_expand_builtin): Use new CALL_EXPR accessors. * config/mips/mips.c (mips_expand_builtin): Use new CALL_EXPR accessors. * config/bfin/bfin.c (bfin_expand_binop_builtin): Pass entire CALL_EXPR instead of arglist. Use new CALL_EXPR accessors. Fix callers. (bfin_expand_unop_builtin): Likewise. (bfin_expand_builtin): Use new CALL_EXPR accessors. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * c-semantics.c (build_stmt): Add internal diagnostic check. * c-pretty-print.c (pp_c_postfix_expression): Use new CALL_EXPR accessors. Print arguments explicitly instead of as a list. * c-typeck.c (build_function_call): Use new CALL_EXPR constructors. * c-omp.c (c_finish_omp_barrier): Use build_call_expr. (c_finish_omp_flish): Likewise. * c-common.c (verify_tree): Use new CALL_EXPR accessors. Traverse arguments explicitly instead of as a list. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. (check_function_arguments_recurse): Use new CALL_EXPR accessors. (c_warn_unused_result): Likewise. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * cp-tree.def (AGGR_INIT_EXPR): Adjust documentation. Change class to tcc_vl_exp. * call.c (build_call): Use build_call_list instead of build3. (build_over_call): Likewise. (build_new_method_call): Use build_min_non_dep_call_list instead of build_min_non_dep. * error.c (dump_call_expr_args): New function. (dump_aggr_init_expr_args): New function. (dump_expr) <AGGR_INIT_EXPR, CALL_EXPR, INDIRECT_REF>: Use them. Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros. * cvt.c (convert_to_void): Use build_call_array instead of build3; use new AGGR_INIT_EXPR accessor macros. * mangle.c (write_expression): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * dump.c (cp_dump_tree) <AGGR_INIT_EXPR>: Update to use new AGGR_INIT_EXPR accessor macros. * cp-gimplify.c (cp_gimplify_init_expr): Use AGGR_INIT_EXPR_SLOT to set the slot operand. * cp-tree.h (AGGR_INIT_EXPR_FN): New macro. (AGGR_INIT_EXPR_SLOT): New macro. (AGGR_INIT_EXPR_ARG): New macro. (aggr_init_expr_nargs): New macro. (AGGR_INIT_EXPR_ARGP): New macro. (aggr_init_expr_arg_iterator): New. (init_aggr_init_expr_arg_iterator): New. (next_aggr_init_expr_arg): New. (first_aggr_init_expr_arg): New. (more_aggr_init_expr_args_p): New. (FOR_EACH_AGGR_INIT_EXPR_ARG): New. (stabilize_aggr_init): New declaration. (build_min_non_dep_call_list): Likewise. * tree.c (process_aggr_init_operands): New function. (build_aggr_init_array) New function. (build_cplus_new): Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros. Replace use of build3 with build_aggr_init_array. (build_min_non_dep_call_list) New function. (build_min_nt): Assert input code parameter is not a variable length expression class. (build_min, build_min_non_dep): Likewise. (cp_tree_equal) <CALL_EXPR>: Iterate through the arguments to check for equality instead of recursing. Handle tcc_vl_exp tree code classes. (stabilize_call): Update to only handle CALL_EXPRs, not AGGR_INIT_EXPRs; use new CALL_EXPR accessor macros. (stabilize_aggr_init): New function. (stabilize_init): Use it. * cxx-pretty-print.c (pp_cxx_postfix_expression) <AGGR_INIT_EXPR, CALL_EXPR>: Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros and argument iterators. * pt.c (tsubst_copy) <CALL_EXPR>: Replace build_nt with build_vl_exp. Iterate through the operands, recursively processing each one. (tsubst_copy_and_build) <CALL_EXPR>: Update to use new CALL_EXPR accessor macros. (value_dependent_expression_p) <default>: Handle tcc_vl_exp tree code classes. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH. * semantics.c (finish_call_expr): Use build_nt_call_list instead of build_nt. (simplify_aggr_init_expr): Update to use new AGGR_INIT_EXPR accessor macros. Use build_call_array to construct the CALL_EXPR node instead of build3 * decl2.c (build_offset_ref_call_from_tree): Use build_nt_call_list and build_min_non_dep_call_list instead of build_min_nt and build_min_non_dep. * parser.c (cp_parser_postfix_expression) <CPP_OPEN_PAREN>: Use build_nt_call_list instead of build_min_nt. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * java-tree.h (BUILD_MONITOR_ENTER): Use build_call_nary instead of build3. (BUILD_MONITOR_EXIT): Likewise. * java-gimplify.c (java_gimplify_component_ref): Use build_call_expr. (java_gimplify_modify_expr): Likewise. * class.c (cache_this_class_ref): Use build_call_expr. (build_static_field_ref): Likewise. (emit_indirect_register_classes): Likewise. (emit_register_classes): Likewise. * resource.c (write_resource_constructor): Use build_call_expr. * builtins.c (builtin_creator_function): Change interpretation of the second parameter to be the whole CALL_EXPR instead of the arglist. (max_builtin): Tweak parameter list. Use new CALL_EXPR accessors. (min_builtin): Likewise. (abs_builtin): Likewise. (java_build_function_call_expr): Likewise. (convert_real): Likewise. (UNMARSHAL3): Likewise. (UNMARSHAL4): Likewise. (UNMARSHAL5): Likewise. (build_arglist_for_builtin): Delete. Fix callers to use build_call_expr instead. (putObject_builtin): Tweak parameter list. Use new CALL_EXPR accessors. (compareAndSwapInt_builtin): Likewise. (compareAndSwapLong_builtin): Likewise. (compareAndSwapObject_builtin): Likewise. (putVolatile_builtin): Likewise. (getVolatile_builtin): Likewise. (VMSupportsCS8_builtin): Likewise. (check_for_builtin): Pass entire CALL_EXPR to builtin expander instead of arglist. * expr.c (build_java_athrow): Use build_call_nary instead of build3. (build_java_throw_out_of_bounds_exception): Likewise. (java_check_reference): Likewise. (build_java_arraystore_check): Likewise. (build_newarray): Likewise. (build_anewarray): Likewise. (expand_java_multinewarray): Use build_call_list instead of build3. (build_java_monitor): Use build_call_nary instead of build3. (java_create_object): Likewise. (expand_java_NEW): Likewise. (build_instanceof): Likewise. (expand_java_CHECKCAST): Likewise. (build_java_soft_divmod): Likewise. (build_java_binop): Likewise. (build_field_ref): Likewise. (build_class_init): Likewise. (rewrite_arglist_getcaller): Use build_call_expr. (build_invokeinterface): Use build_call_nary instead of build3. (expand_invoke): Use build_call_list instead of build3. (build_jni_stub): Use build_call_nary, build_call_list, or build_call_expr instead of build3. (expand_java_field_op): Use build_call_expr instead of build3. (force_evaluation_order): Use new CALL_EXPR accessors. * lang.c (java_get_callee_fndecl): Use new CALL_EXPR accessors. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * objc-act.c (receiver_is_class_object): Use new CALL_EXPR accessors. (objc_get_callee_fndecl): Likewise. 2007-02-15 Sandra Loosemore <sandra@codesourcery.com> Brooks Moses <brooks.moses@codesourcery.com> Lee Millward <lee.millward@codesourcery.com> * trans-expr.c (gfc_conv_power_op): Use build_call_expr. (gfc_conv_string_tmp): Likewise. (gfc_conv_concat_op): Likewise. (gfc_build_compare_string): Likewise. (gfc_conv_function_call): Use build_call_list instead of build3. * trans-array.c (gfc_trans_allocate_array_storage): Use build_call_expr. (gfc_grow_array): Likewise. (gfc_trans_array_ctor_element): Likewise. (gfc_trans_array_constructor_value): Likewise. (gfc_array_allocate): Likewise. (gfc_array_deallocate): Likewise. (gfc_trans_auto_array_allocation): Likewise. (gfc_trans_dummy_array_bias): Likewise. (gfc_conv_array_parameter): Likewise. (gfc_trans_dealloc_allocated): Likewise. (gfc_duplicate_allocatable): Likewise. * trans-openmp.c (gfc_trans_omp_barrier): Use build_call_expr. (gfc_trans_omp_flush): Likewise. * trans-stmt.c (gfc_conv_elementel_dependencies): Use build_call_expr. (gfc_trans_pause): Likewise. (gfc_trans_stop): Likewise. (gfc_trans_character_select): Likewise. (gfc_do_allocate): Likewise. (gfc_trans_assign_need_temp): Likewise. (gfc_trans_pointer_assign_need_temp): Likewise. (gfc_trans_forall_1): Likewise. (gfc_trans_where_2): Likewise. (gfc_trans_allocate): Likewise. (gfc_trans_deallocate): Likewise. * trans.c (gfc_trans_runtime_check): Use build_call_expr. * trans-io.c (gfc_trans_open): Use build_call_expr. (gfc_trans_close): Likewise. (build_filepos): Likewise. (gfc_trans_inquire): Likewise. (NML_FIRST_ARG): Delete. (NML_ADD_ARG): Delete. (transfer_namelist_element): Use build_call_expr. (build_dt): Likewise. (gfc_trans_dt_end): Likewise. (transfer_expr): Likewise. (transfer_array-desc): Likewise. * trans-decl.c (gfc_generate_function_code): Use build_call_expr. (gfc_generate_constructors): Likewise. * trans-intrinsic.c (gfc_conv_intrinsic_ctime): Use build_call_expr. (gfc_conv_intrinsic_fdate): Likewise. (gfc_conv_intrinsic_ttynam): Likewise. (gfc_conv_intrinsic_array_transfer): Likewise. (gfc_conv_associated): Likewise. (gfc_conv_intrinsic_si_kind): Likewise. (gfc_conv_intrinsic_trim): Likewise. (gfc_conv_intrinsic_repeat: Likewise. (gfc_conv_intrinsic_iargc): Likewise. ........ r122019 | kgallowa | 2007-02-15 16:05:39 -0800 (Thu, 15 Feb 2007) | 16 lines 2007-02-15 Kyle Galloway <kgallowa@redhat.com> * interpret.cc (_Jv_InterpMethod::check_handler): New method. * interpret-run.cc: Change the catch section to report exception events and to use the new check_handler method. * include/java-interp.h (_Jv_InterpMethod): Add check_handler. * gnu/gcj/jvmti/ExceptionEvent.java: New file. * gnu/gcj/jvmti/ExceptionEvent.h: New file. * gnu/gcj/jvmti/natExceptionEvent.cc: New file. * libjava/classpath/lib/gnu/gcj/jvmti/ExceptionEvent.class: New file. * sources.am: Added ExceptionEvent.java. * Makefile.am: Added natExceptionEvent.cc * Makefile.in: Regenerated. * include/Makefile.in: Regenerated. * gcj/Makefile.in: Regenerated. ........ r122023 | gccadmin | 2007-02-15 16:17:39 -0800 (Thu, 15 Feb 2007) | 1 line Daily bump. ........ r122025 | ian | 2007-02-15 16:42:11 -0800 (Thu, 15 Feb 2007) | 11 lines ./: * lower-subreg.c (move_eh_region_note): New static function. (resolve_simple_move): Call it. (decompose_multiword_subregs): Track blocks for which we resolve a simple move which is also a control flow insn. Pass them to find_many_sub_basic_blocks. (pass_lower_subreg): Add TODO_verify_flow. (pass_lower_subreg2): Likewise. testsuite/: * g++.dg/eh/subreg-1.C: New test. ........ r122026 | doko | 2007-02-15 17:02:57 -0800 (Thu, 15 Feb 2007) | 4 lines 2007-02-16 Matthias Klose <doko@debian.org> * texi2pod.pl: Handle @subsubsection, ignore @anchor. ........ r122027 | pinskia | 2007-02-15 17:19:23 -0800 (Thu, 15 Feb 2007) | 12 lines 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com> * stmt.c (warn_if_unused_value): VA_ARG_EXPR has side effects unknown to this function, return early. 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com> * gcc.dg/Wunused-value-2.c: New testcase. ........ r122028 | pinskia | 2007-02-15 17:23:35 -0800 (Thu, 15 Feb 2007) | 11 lines 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com> * semantics.c (finish_stmt_expr_expr): Set TREE_TYPE of the statement expression if we had an error mark node. 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com> * g++.dg/ext/stmtexpr10.C: New testcase. ........ r122029 | pinskia | 2007-02-15 17:27:42 -0800 (Thu, 15 Feb 2007) | 13 lines 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com> * fold-const.c (fold_comparison): Add back the folding of constant complex comparisions. 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com> * gcc.c-torture/compile/pr30433.c: New testcase to check that complex constants comparisions are foldded. ........ r122030 | sayle | 2007-02-15 19:38:22 -0800 (Thu, 15 Feb 2007) | 39 lines * tree.c (expr_align): Handle MODIFY_EXPR. GIMPLE_MODIFY_STMT should be unreachable. (build2_stat): Allow construction of MODIFY_EXPR at any time. For the time being redirect GIMPLE_MODIFY_STMT to the new (renamed) build_gimple_modify_stmt_stat. (build2_gimple_stat): Rename to... (build_gimple_modify_stmt_stat): Now longer take a CODE argument. Always build a GIMPLE_MODIFY_STMT node. * tree.h (build2_gimple, build2_gimple_stat): Delete. (build_gimple_modify_stmt, build_gimple_modify_stmt_stat): New declarations. * tree-cfg.c (factor_computed_gotos, tree_merge_blocks, gimplify_val): Use build_gimple_modify_stmt instead of build2_gimple. * tree-complex.c (set_component_ssa_name, expand_complex_move, expand_complex_div_wide): Likewise. * tree-ssa-dom.c (record_equivalences_from_stmt): Likewise. * tree-ssa-loop-im.c (schedule_sm): Likewise. * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Likewise. * tree-ssa-loop-manip.c (create_iv): Likewise. * tree-ssa-phiopt.c (conditional_replacement, minmax_replacement, abs_replacement): Likewise. * tree-ssa-pre.c (create_expression_by_pieces, poolify_modify_stmt, realify_fake_stores): Likewise. * builtins.c (std_expand_builtin_va_start): Build a MODIFY_EXPR node rather than a GIMPLE_MODIFY_STMT node. (std_gimpify_va_arg_expr, expand_builtin_va_copy, fold_builtin_memset, fold_builtin_memory_op, do_mpfr_sincos): Likewise. (integer_valued_real_p): Handle MODIFY_EXPR, not GIMPLE_MODIFY_STMT. * expr.c (expand_expr_real_1): Handle both MODIFY_EXPR and GIMPLE_MODIFY_STMT. * gfortran.dg/pr30391-1.f90: New test case. ........ r122031 | brooks | 2007-02-15 20:31:21 -0800 (Thu, 15 Feb 2007) | 2 lines * Makefile.in: Added "pdf" target to .PHONY. ........ r122032 | bonzini | 2007-02-16 00:53:51 -0800 (Fri, 16 Feb 2007) | 7 lines 2007-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * Makefile.in (SYSTEM_HEADER_DIR): Use single quotes to avoid nested double- and backquotes. ........ r122036 | rguenth | 2007-02-16 01:34:24 -0800 (Fri, 16 Feb 2007) | 9 lines 2007-02-16 Richard Guenther <rguenther@suse.de> * tree-flow-inline.h (single_imm_use_p): Remove. (zero_imm_uses_p): Likewise. * tree-ssa-coalesce.c (create_outofssa_var_map): Use has_single_use instead of single_imm_use_p. * tree-cfg.c (replace_uses_by): Use has_zero_use instead of zero_imm_uses_p. ........ r122037 | burnus | 2007-02-16 01:55:20 -0800 (Fri, 16 Feb 2007) | 14 lines fortran/ 2007-02-16 Tobias Burnus <burnus@net-b.de> * trans-decl.c (gfc_generate_function_code): Do not initialize pointers to derived components. testsuite/ 2007-02-16 Tobias Burnus <burnus@net-b.de> * gfortran.dg/func_derived_4.f90: New test. ........ r122038 | fxcoudert | 2007-02-16 02:07:00 -0800 (Fri, 16 Feb 2007) | 2 lines * runtime/memory.c (deallocate): Correct comment. ........ r122040 | rguenth | 2007-02-16 05:41:03 -0800 (Fri, 16 Feb 2007) | 8 lines 2007-02-16 Richard Guenther <rguenther@suse.de> Christian Bruel <christian.bruel@st.com> * fold-const.c (tree_swap_operands_p): Treat SSA_NAMEs like DECLs but prefer SSA_NAMEs over DECLs. * gcc.dg/strict-overflow-5.c: New testcase. ........ r122041 | aph | 2007-02-16 05:51:04 -0800 (Fri, 16 Feb 2007) | 24 lines 2007-02-15 Andrew Haley <aph@redhat.com> * Makefile.am (nat_source_files): Remove java/lang/management/natVMManagementFactory.cc. * java/lang/Thread.java (getStackTrace): Use reflection to call the ManagementFactory. * java/lang/management/VMManagementFactory.java: Remove native methods. * java/lang/management/natVMManagementFactory.cc: Deleted. * sources.am: Regnerate. * scripts/makemake.tcl: Add new "bcheaders" type. Move java/lang/management and gnu/classpath/management to "bc". Move gnu/java/lang/management to "bcheaders". 2007-02-16 Andrew Haley <aph@redhat.com> * gnu/java/lang/management/MemoryMXBeanImpl.java, javax/management/MBeanServerDelegate.java: Use gnu.javax.management.ListenerData rather than gnu.classpath.ListenerData. * gnu/javax/management/ListenerData.java: Move here from gnu/classpath/ListenerData.java. ........ r122044 | paolo | 2007-02-16 06:26:21 -0800 (Fri, 16 Feb 2007) | 9 lines 2007-02-16 Paolo Carlini <pcarlini@suse.de> Revert. 2007-02-14 Hans-Peter Nilsson <hp@axis.com> * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Xfail ICE for cris-*-*. ........ r122045 | gary | 2007-02-16 06:54:25 -0800 (Fri, 16 Feb 2007) | 6 lines 2007-02-16 Gary Benson <gbenson@redhat.com> * gnu/gcj/tools/gcj_dbtool/Main.java (bytesToString): Don't lose zeros from within the digest. ........ r122048 | kgallowa | 2007-02-16 10:32:07 -0800 (Fri, 16 Feb 2007) | 18 lines 2007-02-16 Kyle Galloway <kgallowa@redhat.com> * interpret.cc: Add extra DEBUG_LOCALS_INSN calls for multi-slot variables to maintain type info. * interpret-run.cc: Add local variable info to frame in the debug interpreter. * jvmti.cc (getLocalFrame): New method. (_Jv_JVMTI_GetLocalObject): New method. (_Jv_JVMTI_GetLocallInt): New method. (_Jv_JVMTI_GetLocalFloat): New method. (_Jv_JVMTI_GetLocalLong): New method. (_Jv_JVMTI_GetLocalDouble): New method. (_Jv_JVMTI_SetLocalObject): New method. (_Jv_JVMTI_SetLocalInt): New method. (_Jv_JVMTI_SetLocalFloat): New method. (_Jv_JVMTI_SetLocalLong): New method. (_Jv_JVMTI_SetLocalDouble): New method. ........ r122049 | uros | 2007-02-16 10:36:01 -0800 (Fri, 16 Feb 2007) | 16 lines * config/i386/i386.h (x86_use_xchgb): New. (TARGET_USE_XCHGB): New macro. * config/i386/i386.c (x86_use_xchgb): Set for PENT4. * config/i386/i386.md (*rotlhi3_1 splitter, *rotrhi3_1 splitter): Split after reload into bswaphi for shifts of 8. (bswaphi_lowpart): Generate rolw insn for HImode byte swaps. (*bswaphi_lowpart_1): Generate xchgb for Q registers for TARGET_XCHGB or when optimizing for size. testsuite/ChangeLog: * gcc.target/i386/builtin-bswap-1.c: Remove -march=nocona. * gcc.target/i386/builtin-bswap-3.c: Ditto. * gcc.target/i386/xchg-1.c: New test. * gcc.target/i386/xchg-2.c: New test. ........ r122050 | tromey | 2007-02-16 11:19:11 -0800 (Fri, 16 Feb 2007) | 6 lines 2006-10-14 Edwin Steiner <edwin.steiner@gmx.net> * javax/management/MBeanInfo.java (MBeanInfo): Use clone to duplicate the arrays in order to preserve the array type. ........ r122054 | daney | 2007-02-16 13:23:10 -0800 (Fri, 16 Feb 2007) | 19 lines * java/lang/Thread.java (Thread(ThreadGroup, Runnable, String)): Pass new parameter constructor. (Thread(ThreadGroup, Runnable, String, long)): Same. (Thread(String, boolean)): New constructor. (Thread(Thread, ThreadGroup, Runnable, String): Add parameter noInheritableThreadLocal, don't call InheritableThreadLocal.newChildThread if set. * java/lang/PosixProcess.java(ProcessManager()): Set noInheritableThreadLocal in super. * java/lang/natThread.cc (_Jv_AttachCurrentThread): Pass new parameter to Thread constructor. (_Jv_AttachCurrentThreadAsDaemon): Same. * java/lang/Thread.h: Regenerate. * classpath/lib/java/lang/Thread.class: Same. * classpath/lib/java/lang/PosixProcess$EOFInputStream.class: Same. * classpath/lib/java/lang/PosixProcess.class: Same. * classpath/lib/java/lang/Thread$State.class: Same. * classpath/lib/java/lang/PosixProcess$ProcessManager.class: Same. ........ r122058 | ebotcazou | 2007-02-16 15:40:52 -0800 (Fri, 16 Feb 2007) | 13 lines * trans.c (call_to_gnu): Use build_call_list instead of build3 to build the call expression. (gnat_stabilize_reference_1): Handle tcc_vl_exp. * utils.c (max_size) <tcc_exceptional>: Delete. <tcc_vl_exp>: New case. <tcc_expression>: Delete CALL_EXPR subcase. (build_global_cdtor): Use build_call_nary instead of build3. * utils2.c (build_call_1_expr): Likewise. (build_call_2_expr): Likewise. (build_call_0_expr): Likewise. (build_call_alloc_dealloc): Likewise. ........ r122063 | gccadmin | 2007-02-16 16:17:46 -0800 (Fri, 16 Feb 2007) | 1 line Daily bump. ........ r122065 | kseitz | 2007-02-16 17:21:28 -0800 (Fri, 16 Feb 2007) | 7 lines * gnu/classpath/jdwp/natVMVirtualMachine.cc (get_line_table): New function. (handle_single_step): New function. (jdwpSingleStepCB): New function. (jdwpVMInitCB): Define a JVMTI single step callback, but don't enable it until needed. ........ r122066 | geoffk | 2007-02-16 17:28:16 -0800 (Fri, 16 Feb 2007) | 2 lines * config/rs6000/rs6000.c: Clean up trailing whitespace. ........ r122067 | geoffk | 2007-02-16 17:47:38 -0800 (Fri, 16 Feb 2007) | 19 lines * config/darwin.h (LINK_SPEC): Always pass -macosx_version_min to linker. (DARWIN_EXTRA_SPECS): Add %(darwin_minversion). * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Just call darwin_rs6000_override_options. (C_COMMON_OVERRIDE_OPTIONS): Expect darwin_macosx_version_min to be non-NULL always. (TARGET_C99_FUNCTIONS): Likewise. (CC1_SPEC): Always pass -mmacosx-version-min to cc1*. (DARWIN_MINVERSION_SPEC): New. * config/rs6000/rs6000.c (darwin_rs6000_override_options): New. * config/i386/darwin.h (CC1_SPEC): Always pass -mmacosx-version-min to cc1*. (DARWIN_MINVERSION_SPEC): New. * config/darwin.opt (mmacosx-version-min): Initialize to non-NULL value. * config/darwin-c.c (darwin_cpp_builtins): Expect darwin_macosx_version_min to be non-NULL always. ........ r122069 | kazu | 2007-02-16 20:01:30 -0800 (Fri, 16 Feb 2007) | 3 lines * sched-deps.c (find_insn_list): Remove. * sched-int.h: Remove the prototype for find_insn_list. ........ r122073 | jsm28 | 2007-02-17 05:35:03 -0800 (Sat, 17 Feb 2007) | 8 lines 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting. * configure: Regenerate. ........ r122078 | gccadmin | 2007-02-17 16:17:30 -0800 (Sat, 17 Feb 2007) | 1 line Daily bump. ........ r122080 | kazu | 2007-02-17 16:52:51 -0800 (Sat, 17 Feb 2007) | 8 lines * cfgloop.c, config/alpha/alpha.c, config/bfin/bfin.c, config/i386/athlon.md, config/ia64/ia64.md, config/rs6000/rs6000.c, config/s390/s390.c, config/spu/spu.md, df-problems.c, df.h, fold-const.c, ipa-cp.c, ipa-inline.c, ipa-prop.h, see.c, struct-equiv.c, tree-inline.c, tree-ssa-loop-niter.c, tree-vect-analyze.c, tree-vect-transform.c: Fix comment typos. ........ r122081 | kazu | 2007-02-17 16:59:36 -0800 (Sat, 17 Feb 2007) | 2 lines * decl.c, tree.c: Fix comment typos. ........ r122082 | zippel | 2007-02-17 17:16:55 -0800 (Sat, 17 Feb 2007) | 3 lines * config/m68k/linux.h (MD_UNWIND_SUPPORT): Define. * config/m68k/linux-unwind.h: New file. ........ r122083 | zippel | 2007-02-17 17:20:15 -0800 (Sat, 17 Feb 2007) | 4 lines * config/m68k/m68k.md (extv,extzv,insv): disable dynamic parameter for register bitfield operations, general predicates cleanup ........ r122084 | zippel | 2007-02-17 17:30:58 -0800 (Sat, 17 Feb 2007) | 5 lines * config/m68k/m68k.c (split_di): New. * config/m68k/m68k-protos.h: Declare split_di. * config/m68k/m68k.md (extendsidi2*,ashldi3*,ashrdi3*,lshrdi3*): Improve predicate handling and split constant shifts. ........ r122085 | kazu | 2007-02-17 17:45:58 -0800 (Sat, 17 Feb 2007) | 2 lines * objc/objc-act.c: Fix comment typos. ........ r122086 | kazu | 2007-02-17 17:51:00 -0800 (Sat, 17 Feb 2007) | 2 lines * class.c: Fix a comment typo. ........ r122087 | kazu | 2007-02-17 18:18:25 -0800 (Sat, 17 Feb 2007) | 4 lines * config/ia64/ia64.h, config/ia64/ia64.md, config/ia64/predicates.md, config/ia64/sysv4.h: Follow spelling conventions. ........ r122089 | paolo | 2007-02-18 03:32:44 -0800 (Sun, 18 Feb 2007) | 22 lines 2007-02-18 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_algobase.h: Do not include <climits>, use std::numeric_limits. * include/bits/stl_bvector.h: Use __CHAR_BIT__. * config/locale/gnu/codecvt_members.cc: Include <climits>. * config/locale/generic/codecvt_members.cc: Likewise. * include/std/string: Do not include <algorithm>; do not include <memory>, include <bits/allocator.h> instead. * include/ext/vstring_fwd.h: Likewise. * include/ext/vstring_util.h: Do not include <algorithm>. * include/tr1/hashtable_policy.h: Include <algorithm>. * testsuite/21_strings/basic_string/replace/char/1.cc: Likewise. * testsuite/21_strings/basic_string/replace/wchar_t/1.cc: Likewise. * testsuite/23_containers/bitset/cons/1.cc: Likewise. * testsuite/util/testsuite_character.h: Likewise. * config/locale/gnu/codecvt_members.cc: Also include <cstdlib>, for MB_CUR_MAX. * config/locale/generic/codecvt_members.cc: Likewise. ........ r122090 | manu | 2007-02-18 03:55:53 -0800 (Sun, 18 Feb 2007) | 5 lines 2007-02-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * objc/objc-list.h (list_free): Add keyword 'inline' to avoid unused warning. ........ r122093 | ebotcazou | 2007-02-18 05:43:05 -0800 (Sun, 18 Feb 2007) | 4 lines * gnat.dg/test_prio_p.adb: Compile with -gnatws. * lib/gnat.exp (gnat_target_compile): Pass -f to the driver. ........ r122095 | ebotcazou | 2007-02-18 05:52:46 -0800 (Sun, 18 Feb 2007) | 4 lines * calls.c (mem_overlaps_already_clobbered_arg_p): Return true for arg pointer based indexed addressing. ........ r122097 | ebotcazou | 2007-02-18 06:03:24 -0800 (Sun, 18 Feb 2007) | 3 lines * tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR. ........ r122101 | sandra | 2007-02-18 11:34:28 -0800 (Sun, 18 Feb 2007) | 12 lines 2007-02-18 Sandra Loosemore <sandra@codesourcery.com> * calls.c (initialize_argument_information): Pass original EXP and STRUCT_VALUE_ADDR_VALUE instead of a list of arguments. Move code to split complex arguments here, as part of initializing the ARGS array. (expand_call): Remove code that builds a list of arguments and inserts implicit arguments into it. Instead, just count how many implicit arguments there will be so we can determine the size of the ARGS array, and let initialize_argument_information do the work. (split_complex_values): Delete unused function. ........ r122102 | pault | 2007-02-18 11:52:16 -0800 (Sun, 18 Feb 2007) | 13 lines 2007-02-18 Roger Sayle <roger@eyesopen.com> Paul Thomas <pault@gcc.gnu.org> * match.c (match_forall_iterator): Use gfc_match_expr instead of gfc_match_variable to match the iterator variable. Return MATCH_NO if not a variable. Remove the reset of the symbol's flavor in cleanup. 2007-02-18 Roger Sayle <roger@eyesopen.com> * gfortran.dg/forall_10.f90: New test case. ........ r122103 | sayle | 2007-02-18 12:05:00 -0800 (Sun, 18 Feb 2007) | 16 lines * trans-array.c (gfc_build_constant_array_constructor): When the shape of the constructor is known, use that to construct the gfc_array_spec. (gfc_trans_constant_array_constructor): Initialize the "info" information for all of the dimensions of the array constructor. (constant_array_constructor_loop_size): New function. (gfc_trans_array_constructor): Use it to determine whether a loop is suitable for "constant array constructor" optimization. * trans-intrinsic.c (gfc_conv_intrinsic_anyall): Use fold_build2 instead of build2, to avoid conditions like "(a != b) != 0". * gfortran.dg/array_constructor_15.f90: New test case. ........ r122104 | dje | 2007-02-18 12:55:31 -0800 (Sun, 18 Feb 2007) | 5 lines 2007-02-18 David Edelsohn <edelsohn@gnu.org> Roger Sayle <roger@eyesopen.com> * config/rs6000/rs6000.md (bswapsi2): New define_insn and splitter. ........ r122106 | steven | 2007-02-18 14:33:23 -0800 (Sun, 18 Feb 2007) | 4 lines * local-alloc.c (update_equiv_regs): Do not set reg_equiv_init if we fail to attach a REG_EQUIV note. ........ r122107 | aoliva | 2007-02-18 14:45:12 -0800 (Sun, 18 Feb 2007) | 4 lines * configure.ac: Drop multiple occurrences of --enable-languages, and fix its quoting. * configure: Rebuilt. ........ r122108 | aoliva | 2007-02-18 14:51:18 -0800 (Sun, 18 Feb 2007) | 9 lines ChangeLog: * configure: Rebuilt. config/ChangeLog: * acx.m4 (NCN_STRICT_CHECK_TOOLS): Mark environment variable as precious. Prefer it over a cached value. Use cached value verbosely. (NCN_STRICT_CHECK_TARGET_TOOLS): Likewise. Don't override environment variable with build-time tools. ........ r122110 | ghazi | 2007-02-18 16:14:14 -0800 (Sun, 18 Feb 2007) | 8 lines * builtins.c (fold_builtin_load_exponent): New. (fold_builtin_2): Use it. testsuite: * gcc.dg/torture/builtin-ldexp-1.c: New. * gcc.dg/torture/builtin-math-2.c: Add ldexp/scalbn/scalbln cases. ........ r122114 | gccadmin | 2007-02-18 16:17:29 -0800 (Sun, 18 Feb 2007) | 1 line Daily bump. ........ r122116 | sayle | 2007-02-18 16:54:29 -0800 (Sun, 18 Feb 2007) | 11 lines * simplify-rtx.c (simplify_binary_operation_1) <IOR>: Optimize (X & C1) | C2 as C2 when (C1 & C2) == C1 and X has no side-effects. Optimize (X & C1) | C2 as X | C2 when (C1 | C2) == ~0. Canonicalize (X & C1) | C2 as (X & (C1 & ~C2)) | C2. <AND>: Canonicalize (X | C1) & C2 as (X & C2) | (C1 & C2). * gcc.target/i386/andor-1.c: New test case. ........ r122117 | kazu | 2007-02-18 17:20:56 -0800 (Sun, 18 Feb 2007) | 3 lines * config/sh/divtab.c, config/sh/sh.c, config/sh/sh.h, config/sh/sh.md: Follow spelling conventions. ........ r122118 | kazu | 2007-02-18 17:27:56 -0800 (Sun, 18 Feb 2007) | 3 lines * config/frv/frv.c, config/frv/frv.h, config/frv/frv.md, config/frv/predicates.md: Follow spelling conventions. ........ r122119 | kazu | 2007-02-18 17:36:11 -0800 (Sun, 18 Feb 2007) | 3 lines * config/m68k/linux-unwind.h: Fix a comment typo. * target.h: Follow spelling conventions. ........ r122120 | sayle | 2007-02-18 18:45:34 -0800 (Sun, 18 Feb 2007) | 28 lines * function.c (gimplify_parameters): Call build_gimple_modify_stmt instead of calling build2 with a GIMPLE_MODIFY_STMT. * gimple-low.c (lower_function_body, lower_builtin_setjmp): Likewise. * gimplify.c (build_stack_save_restore, gimplify_return_expr, gimplify_decl_expr, gimplify_self_mod_expr, gimplify_cond_expr, gimplify_init_ctor_eval_range, gimple_push_cleanup, gimplify_omp_for, gimplify_omp_atomic_pipeline, gimplify_omp_atomic_mutex, gimplify_expr, gimplify_one_sizepos, force_gimple_operand): Likewise. * ipa-cp.c (constant_val_insert): Likewise. * lambda-code.c (lbv_to_gcc_expression, lle_to_gcc_expression, lambda_loopnest_to_gcc_loopnest, replace_uses_equiv_to_x_with_y, perfect_nestify): Likewise. * langhooks.c (lhd_omp_assignment): Likewise. * omp-low.c (lower_rec_input_clauses, lower_reduction_clauses, lower_copyprivate_clauses, lower_send_clauses, lower_send_shared_vars, expand_parallel_call, expand_omp_for_generic, expand_omp_for_static_nochunk, expand_omp_for_static_chunk, expand_omp_sections, lower_omp_single_copy, lower_omp_for_lastprivate, lower_omp_parallel, init_tmp_var, save_tmp_var): Likewise. * value-prof.c (tree_divmod_fixed_value, tree_mod_pow2, tree_mod_subtract, tree_ic, tree_stringop_fixed_value): Likewise. ........ r122121 | aoliva | 2007-02-18 19:51:24 -0800 (Sun, 18 Feb 2007) | 3 lines * tree-sra.c (sra_build_assignment): Disable assertion checking for now. ........ r122122 | sandra | 2007-02-18 20:12:49 -0800 (Sun, 18 Feb 2007) | 7 lines 2007-02-18 Sandra Loosemore <sandra@codesourcery.com> * tree-dump.c (dequeue_and_dump): Add tcc_vl_exp case missed during CALL_EXPR representation conversion. * tree-ssa-propagate.c (set_rhs): Likewise. ........ r122123 | aoliva | 2007-02-18 22:22:43 -0800 (Sun, 18 Feb 2007) | 3 lines * tree-sra.c (sra_build_assignment): Replace assertion checking with a comment explaining why it can't be done. ........ r122124 | jvdelisle | 2007-02-18 22:48:07 -0800 (Sun, 18 Feb 2007) | 7 lines 2007-02-18 Jerry DeLisle <jvdelisle@gcc.gnu.org> * options.c (gfc_init_options): Relax warning level for obsolescent. * match.c (match_arithmetic_if): Change to obsolescent from deleted. (gfc_match_if): Same. ........ r122125 | jvdelisle | 2007-02-18 22:52:18 -0800 (Sun, 18 Feb 2007) | 5 lines 2007-02-18 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/pr17229.f: Change "Obsolete" to "Obsolescent". ........ r122126 | echristo | 2007-02-18 23:14:24 -0800 (Sun, 18 Feb 2007) | 9 lines 2007-02-18 Eric Christopher <echristo@gmail.com> * mips.c (mips_prepare_builtin_arg): Add argnum parameter. Remove use of arglist. (mips_expand_builtin): Remove use of arglist, pass in expr. (mips_expand_builtin_direct): Rewrite handling for arglist removal. (mips_expand_builtin_movtf): Ditto. (mips_expand_builtin_compare): Ditto. ........ r122127 | dorit | 2007-02-19 00:46:45 -0800 (Mon, 19 Feb 2007) | 5 lines * tree-vect-trasnform.c (vect_get_vec_def_for_stmt_copy): Remove wrong assert. ........ r122128 | hp | 2007-02-19 04:34:12 -0800 (Mon, 19 Feb 2007) | 18 lines * config/cris/cris.c (cris_movem_load_rest_p, cris_store_multiple_op_p) (cris_print_index, cris_print_operand, cris_print_operand_address) (cris_reload_address_legitimized, cris_rtx_costs, cris_address_cost) (cris_side_effect_mode_ok, cris_valid_pic_const, cris_split_movdx) (cris_expand_pic_call_address): Use xxx_P predicate macros instead of GET_CODE () == xxx. * config/cris/cris.h (SECONDARY_RELOAD_CLASS, EXTRA_CONSTRAINT_Q, EXTRA_CONSTRAINT_T, BDAP_INDEX_P, BIAP_INDEX_P, SIMPLE_ADDRESS_P, GO_IF_LEGITIMATE_ADDRESS): Ditto. * config/cris/cris.md (define_insns: *btst, movdi, *mov_side<mode>) (*mov_sidesisf, *mov_side<mode>_mem, *mov_sidesisf_mem) (*clear_side<mode>, movsi, *movsi_internal, *ext_sideqihi) (*ext_side<mode>si, *op_side<mode>, *op_swap_side<mode>, addsi3) (*extopqihi_side, *extop<mode>si_side, *extopqihi_swap_side) (*extop<mode>si_swap_side, addi_mul, *addi,andsi3, andhi3, ashl<mode>3) (uminsi3, call, call_value): Ditto. (define_split: indir_to_reg_split, unnamed): Ditto. ........ r122129 | krebbel | 2007-02-19 06:35:10 -0800 (Mon, 19 Feb 2007) | 7 lines 2007-02-19 Andreas Krebbel <krebbel1@de.ibm.com> * config/s390/s390.c (s390_call_saved_register_used, s390_function_ok_for_sibcall): Adjust the way CALL_EXPR arguments are accessed to the new scheme. ........ r122131 | rth | 2007-02-19 08:21:59 -0800 (Mon, 19 Feb 2007) | 3 lines * var-tracking.c (track_expr_p): Disallow AGGREGATE_TYPE_P in memory. ........ r122132 | jsm28 | 2007-02-19 09:28:03 -0800 (Mon, 19 Feb 2007) | 3 lines * configure.ac: Adjust for loop syntax. * configure: Regenerate. ........ r122133 | ebotcazou | 2007-02-19 11:11:37 -0800 (Mon, 19 Feb 2007) | 4 lines * gimplify.c (gimplify_init_ctor_preeval_1): Detect potential overlap due to calls to functions taking pointers as parameters. ........ r122135 | ebotcazou | 2007-02-19 11:26:16 -0800 (Mon, 19 Feb 2007) | 4 lines * tree-cfg.c (dump_function_to_file): Be prepared for functions without DECL_STRUCT_FUNCTION initialized. ........ r122136 | manu | 2007-02-19 12:02:28 -0800 (Mon, 19 Feb 2007) | 47 lines 2007-02-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * c.opt (Waddress): New. * common.opt (Walways-true): Delete. (Wstring-literal-comparison): Delete. * doc/invoke.texi (Warning Options): Delete -Walways-true and -Wstring-literal-comparison. Add -Waddress. (Waddress): New. (Walways-true): Delete. (Wstring-literal-comparison): Delete. * doc/extend.texi (#pragma GCC diagnostic): Use -Wformat consistently instead of -Walways-true in example. * c-opts.c (c_common_handle_option): -Waddress is enabled by -Wall. * c-typeck.c (parser_build_binary_op): Replace -Wstring-literal-comparison and -Walways-true with -Waddress. * c-common.c (c_common_truthvalue_conversion): Replace -Walways-true with -Waddress. cp/ * typeck.c (build_binary_op): Replace -Wstring-literal-comparison and -Walways-true with -Waddress. * cvt.c (convert_to_void): Replace unconditional warning with -Waddress. testsuite/ * gcc.dg/20031012-1.c: Replace -Walways-true with -Waddress. * gcc.dg/Walways-true-1.c: Likewise. * gcc.dg/weak/weak-3.c: Likewise. * gcc.dg/Werror-1.c: Likewise. * gcc.dg/Werror-3.c: Likewise. * gcc.dg/Werror-4.c: Likewise. * gcc.dg/Werror-5.c: Likewise. * gcc.dg/Werror-6.c: Likewise. * gcc.dg/Werror-7.c: Likewise. * gcc.dg/Werror-8.c: Likewise. * gcc.dg/Werror-10.c: Likewise. * gcc.dg/Werror-11.c: Likewise. * gcc.dg/Werror-12.c: Likewise. * g++.old-deja/g++.mike/warn8.C: Likewise. * g++.dg/warn/Walways-true-1.C: Likewise. * g++.dg/warn/Walways-true-2.C: Likewise. * g++.dg/warn/noeffect8.C: Warn only with -Waddress. * g++.dg/warn/Wstring-literal-comparison-1.C: Replace -Wstring-literal-comparison with -Waddress. * gcc.dg/Wstring-literal-comparison-4.c: Replace -Wno-string-literal-comparison with -Wno-address. ........ r122137 | tkoenig | 2007-02-19 12:49:10 -0800 (Mon, 19 Feb 2007) | 76 lines 2007-02-19 Thomas Koenig <Thomas.Koenig@online.de> * Makefile.am: Add $(srcdir) too all files in generated/. (i_maxloc0_c): Add maxloc0_4_i1.c, maxloc0_8_i1.c, maxloc0_16_i1.c, maxloc0_4_i2.c, maxloc0_8_i2.c and maxloc0_16_i2.c. (i_maxloc1_c): Add maxloc1_4_i1.c, maxloc1_8_i1.c, maxloc1_16_i1.c, maxloc1_4_i2.c, maxloc1_8_i2.c and maxloc1_16_i2.c. (i_maxval_c): Add maxval_i1.c and maxval_i2.c. (i_minloc0_c): Add minloc0_4_i1.c, minloc0_8_i1.c, minloc0_16_i1.c, minloc0_4_i2.c, minloc0_8_i2.c and minloc0_16_i2.c. (i_minloc_1.c): Add minloc1_4_i1.c, minloc1_8_i1.c, minloc1_16_i1.c, minloc1_4_i2.c, minloc1_8_i2.c and minloc1_16_i2.c. (i_minval_c): Add minval_i1.c and minval_i2.c. (i_sum_c): Add sum_i1.c and sum_i2.c. (i_product_c): Add product_i1.c and product_i2.c. (i_matmul_c): Add matmul_i1.c and matmul_i2.c. (gfor_built_specific_src): Remove $(srcdir) from target. (gfor_bulit_specific2_src): Likewise. Makefile.in: Regenerated. libgfortran.h: Add GFC_INTEGER_1_HUGE and GFC_INTEGER_2_HUGE. Add gfc_array_i1 and gfc_array_i2. * generated/matmul_i1.c: New file. * generated/matmul_i2.c: New file. * generated/maxloc0_16_i1.c: New file. * generated/maxloc0_16_i2.c: New file. * generated/maxloc0_4_i1.c: New file. * generated/maxloc0_4_i2.c: New file. * generated/maxloc0_8_i1.c: New file. * generated/maxloc0_8_i2.c: New file. * generated/maxloc1_16_i1.c: New file. * generated/maxloc1_16_i2.c: New file. * generated/maxloc1_4_i1.c: New file. * generated/maxloc1_4_i2.c: New file. * generated/maxloc1_8_i1.c: New file. * generated/maxloc1_8_i2.c: New file. * generated/maxval_i1.c: New file. * generated/maxval_i2.c: New file. * generated/minloc0_16_i1.c: New file. * generated/minloc0_16_i2.c: New file. * generated/minloc0_4_i1.c: New file. * generated/minloc0_4_i2.c: New file. * generated/minloc0_8_i1.c: New file. * generated/minloc0_8_i2.c: New file. * generated/minloc1_16_i1.c: New file. * generated/minloc1_16_i2.c: New file. * generated/minloc1_4_i1.c: New file. * generated/minloc1_4_i2.c: New file. * generated/minloc1_8_i1.c: New file. * generated/minloc1_8_i2.c: New file. * generated/minval_i1.c: New file. * generated/minval_i2.c: New file. * generated/product_i1.c: New file. * generated/product_i2.c: New file. * generated/sum_i1.c: New file. * generated/sum_i2.c: New file. 2007-02-19 Thomas Koenig <Thomas.Koenig@online.de> * fortran/iresolve.c(gfc_resolve_maxloc): Remove coercion of argument to default integer. (gfc_resolve_minloc): Likewise. 2007-02-19 Thomas Koenig <Thomas.Koenig@online.de> * gfortran.dg/intrinsic_intkinds_1.f90: New test. ........ r122139 | lmillward | 2007-02-19 14:39:13 -0800 (Mon, 19 Feb 2007) | 5 lines * config/ia64/ia64.c (ia64_expand_builtin): Use the new CALL_EXPR_FN macro for retrieving the function declaration of the input expression. ........ r122140 | dnovillo | 2007-02-19 15:26:38 -0800 (Mon, 19 Feb 2007) | 5 lines * tree-ssa-pre.c (create_value_expr_from): Initialize POOL to NULL. ........ r122141 | kazu | 2007-02-19 15:35:48 -0800 (Mon, 19 Feb 2007) | 2 lines * doc/invoke.texi (-ftree-lrs): Remove. ........ r122142 | kkojima | 2007-02-19 15:59:15 -0800 (Mon, 19 Feb 2007) | 3 lines * MAINTAINERS: Add myself as sh maintainer. ........ r122146 | gccadmin | 2007-02-19 16:17:43 -0800 (Mon, 19 Feb 2007) | 1 line Daily bump. ........ r122148 | amodra | 2007-02-19 17:25:41 -0800 (Mon, 19 Feb 2007) | 5 lines * varasm.c (use_blocks_for_decl_p): Return false for decls with alias attribute. ........ r122150 | kazu | 2007-02-19 18:10:57 -0800 (Mon, 19 Feb 2007) | 6 lines * config/alpha/alpha.c, config/alpha/alpha.md, config/alpha/lib1funcs.asm, config/alpha/vms-crt0-64.c, config/alpha/vms-psxcrt0-64.c, config/arc/arc.c, config/arc/arc.h, config/arm/arm.c, config/arm/arm.md, config/arm/lib1funcs.asm: Follow spelling conventions. ........ r122151 | kazu | 2007-02-19 18:26:06 -0800 (Mon, 19 Feb 2007) | 13 lines * config/c4x/c4x.md, config/cris/cris.c, config/crx/crx.c, config/fr30/fr30.md, config/i386/i386.h, config/iq2000/iq2000.h, config/iq2000/predicates.md, config/pa/milli64.S, config/pa/pa.c, config/pa/pa.h, config/pa/pa.md, config/pa/pa32-regs.h, config/pa/pa64-regs.h, config/pdp11/pdp11.c, config/pdp11/pdp11.h, config/rs6000/altivec.md, config/rs6000/rs6000.c, config/s390/s390-modes.def, config/sparc/netbsd-elf.h, config/sparc/sparc.c, config/sparc/sparc.h, config/sparc/sparc.md, config/spu/constraints.md, config/spu/spu.c, config/stormy16/stormy16.md: Follow spelling conventions. ........ r122152 | bje | 2007-02-19 19:38:39 -0800 (Mon, 19 Feb 2007) | 2 lines * config/m68hc11/m68hc11.h (OVERRIDE_OPTIONS): Remove extra ;. ........ r122153 | mmitchel | 2007-02-19 23:28:35 -0800 (Mon, 19 Feb 2007) | 3 lines * call.c (build_new_method_call): Ensure that explicit calls of destructors have type "void". ........ r122156 | burnus | 2007-02-20 01:16:58 -0800 (Tue, 20 Feb 2007) | 6 lines 2007-02-20 Tobias Burnus <burnus@net-b.de> * resolve.c (resolve_symbol): Add character dummy VALUE check. ........ r122157 | burnus | 2007-02-20 01:22:28 -0800 (Tue, 20 Feb 2007) | 18 lines fortran/ 2007-02-20 Tobias Burnus <burnus@net-b.de> * symbol.c (gfc_add_volatile): Allow to set VOLATILE attribute for host-associated variables. * gfortran.h (symbol_attribute): Save namespace where VOLATILE has been set. * trans-decl.c (gfc_finish_var_decl): Move variable declaration to the top. testsuite/ 2007-02-20 Tobias Burnus <burnus@net-b.de> * gfortran.dg/volatile10.f90: New test. ........ r122158 | uros | 2007-02-20 01:39:25 -0800 (Tue, 20 Feb 2007) | 4 lines * config/i386/i386.md (expm1xf2): Reorder insn sequence for better code generation. ........ r122159 | manu | 2007-02-20 02:18:58 -0800 (Tue, 20 Feb 2007) | 19 lines 2007-02-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org> DJ Delorie <dj@redhat.com> * diagnostic.c (diagnostic_count_diagnostic): Move -Werror logic to... (diagnostic_report_diagnostic): ... here, and turn them into real errors. If warnings are inhibited, no need to do anything. testsuite/ * gcc.dg/Wfatal.c: New. * gcc.dg/Wfatal-2.c: New. * gcc.dg/Werror-1.c: Adjust expectations. * gcc.dg/Werror-5.c: Likewise. * gcc.dg/Werror-7.c: Likewise. * gcc.dg/Werror-10.c: Likewise. * gcc.dg/Werror-11.c: Likewise. ........ r122161 | gary | 2007-02-20 05:06:37 -0800 (Tue, 20 Feb 2007) | 47 lines 2007-02-20 Gary Benson <gbenson@redhat.com> * gnu/awt/xlib/XEventLoop.h: Regenerated. * gnu/java/awt/peer/gtk/GThreadMutex.h: Likewise. * gnu/java/rmi/server/ConnectionRunnerPool$ConnectionRunner.h: Likewise. * gnu/java/rmi/server/UnicastConnectionManager.h: Likewise. * java/lang/SecurityManager.h: Likewise. * java/lang/Thread.h: Likewise. * java/security/VMSecureRandom$Spinner.h: Likewise. * java/util/concurrent/atomic/AtomicBoolean.h: Likewise. * java/util/concurrent/atomic/AtomicInteger.h: Likewise. * java/util/concurrent/atomic/AtomicLong.h: Likewise. * java/util/concurrent/atomic/AtomicReference.h: Likewise. * java/util/concurrent/ConcurrentHashMap$HashEntry.h: Likewise. * java/util/concurrent/ConcurrentHashMap$Segment.h: Likewise. * java/util/concurrent/ConcurrentLinkedQueue.h: Likewise. * java/util/concurrent/ConcurrentLinkedQueue$Node.h: Likewise. * java/util/concurrent/ConcurrentSkipListMap.h: Likewise. * java/util/concurrent/ConcurrentSkipListMap$Index.h: Likewise. * java/util/concurrent/ConcurrentSkipListMap$Node.h: Likewise. * java/util/concurrent/Exchanger.h: Likewise. * java/util/concurrent/Exchanger$Node.h: Likewise. * java/util/concurrent/FutureTask$Sync.h: Likewise. * java/util/concurrent/LinkedBlockingQueue$Node.h: Likewise. * java/util/concurrent/locks/AbstractQueuedLongSynchronizer.h: Likewise. * java/util/concurrent/locks/AbstractQueuedLongSynchronizer$Node.h: Likewise. * java/util/concurrent/locks/AbstractQueuedSynchronizer.h: Likewise. * java/util/concurrent/locks/AbstractQueuedSynchronizer$Node.h: Likewise. * java/util/concurrent/ScheduledThreadPoolExecutor.h: Likewise. * java/util/concurrent/SynchronousQueue.h: Likewise. * java/util/concurrent/SynchronousQueue$TransferQueue.h: Likewise. * java/util/concurrent/SynchronousQueue$TransferQueue$QNode.h: Likewise. * java/util/concurrent/SynchronousQueue$TransferStack.h: Likewise. * java/util/concurrent/SynchronousQueue$TransferStack$SNode.h: Likewise. * java/util/concurrent/ThreadPoolExecutor.h: Likewise. * java/util/concurrent/ThreadPoolExecutor$Worker.h: Likewise. * java/util/logging/ErrorManager.h: Likewise. * javax/swing/plaf/basic/BasicSpinnerUI$2.h: Likewise. * javax/swing/plaf/basic/BasicSpinnerUI$4.h: Likewise. ........ r122162 | uros | 2007-02-20 05:33:51 -0800 (Tue, 20 Feb 2007) | 20 lines * optabs.h (enum optab_index): Add new OTI_scalb. (scalb_optab): Define corresponding macro. * optabs.c (init_optabs): Initialize scalb_optab. * genopinit.c (optabs): Implement scalb_optab using scalb?f3 patterns. * builtins.c (expand_builtin_mathfn_2, expand_builtin): Handle BUILT_IN_SCALB{,F,L}, BUILT_IN_SCALBN{,F,L} and BUILT_IN_SCALBLN{,F,L}. (expand_builtin): Expand BUILT_IN_SCALB{,F,L}, BUILT_IN_SCALBN{,F,L} and BUILT_IN_SCALBLN{,F,L} using expand_builtin_mathfn_2 if flag_unsafe_math_optimizations is set. * config/i386/i386.md (scalbxf3, scalb<mode>3): New expanders to implement scalbf, scalb and scalbl built-ins as inline x87 intrinsics. testsuite/ChangeLog * gcc.dg/builtins-34.c: Add scalb/scalbn/scalbln cases. ........ r122164 | kseitz | 2007-02-20 06:08:49 -0800 (Tue, 20 Feb 2007) | 4 lines * gnu/classpath/jdwp/natVMVirtualMachine.cc (jdwpClassPrepareCB): Move class status stuff to ... (getClassStatus): ... here. ........ r122165 | gary | 2007-02-20 07:02:38 -0800 (Tue, 20 Feb 2007) | 8 lines 2007-02-20 Gary Benson <gbenson@redhat.com> * javax/management/MBeanServer.java: Updated. * javax/management/MBeanServerConnection.java: Likewise. * javax/management/ObjectName.java: Likewise. * javax/management/StandardMBean.java: Likewise. ........ r122166 | geoffk | 2007-02-20 08:45:38 -0800 (Tue, 20 Feb 2007) | 16 lines Index: gcc/ChangeLog 2007-02-20 Geoffrey Keating <geoffk@apple.com> * config/darwin.h (LINK_SPEC): Default -mmacosx-version-min only if user didn't pass it. * config/i386/darwin.h (CC1_SPEC): Likewise. * config/rs6000/darwin.h (CC1_SPEC): Likewise. (DARWIN_MINVERSION_SPEC): Don't depend on user's setting of -mmacosx-version-min. Index: gcc/testsuite/ChangeLog 2007-02-20 Geoffrey Keating <geoffk@apple.com> * gcc.dg/darwin-minversion-1.c: New. * gcc.dg/darwin-minversion-2.c: New. ........ r122168 | bkoz | 2007-02-20 10:15:01 -0800 (Tue, 20 Feb 2007) | 920 lines 2007-02-20 Benjamin Kosnik <bkoz@redhat.com> Revamp library API testing. Added: * 17_intro/headers * 17_intro/headers/all_assert_neg.cc * 17_intro/headers/all_c++200x_compatibility.cc * 17_intro/headers/all.cc * 17_intro/headers/c++1998 * 17_intro/headers/c++1998/all.cc * 17_intro/headers/c++1998/all_multiple_inclusion.cc * 17_intro/headers/c++1998/c++_for_c.tar * 17_intro/headers/c++1998/c++.tar * 17_intro/using_namespace_std.cc * 18_support/headers * 18_support/headers/cfloat * 18_support/headers/cfloat/values.cc * 18_support/headers/climits * 18_support/headers/climits/values.cc * 18_support/headers/csetjmp * 18_support/headers/csetjmp/functions_std.cc * 18_support/headers/csetjmp/macros.cc * 18_support/headers/csetjmp/types_std.cc * 18_support/headers/csignal * 18_support/headers/csignal/functions_std.cc * 18_support/headers/csignal/macros.cc * 18_support/headers/csignal/types_std.cc * 18_support/headers/cstdarg * 18_support/headers/cstdarg/macros.cc * 18_support/headers/cstdarg/types_std.cc * 18_support/headers/cstddef * 18_support/headers/cstddef/macros.cc * 18_support/headers/cstddef/types_std.cc * 18_support/headers/cstdlib * 18_support/headers/cstdlib/functions_std.cc * 18_support/headers/cstdlib/macros.cc * 18_support/headers/ctime * 18_support/headers/ctime/functions_std.cc * 18_support/headers/ctime/macros.cc * 18_support/headers/ctime/types_std.cc * 18_support/headers/exception * 18_support/headers/exception/synopsis.cc * 18_support/headers/exception/types_std.cc * 18_support/headers/limits * 18_support/headers/limits/synopsis.cc * 18_support/headers/new * 18_support/headers/new/synopsis.cc * 18_support/headers/new/types_std.cc * 18_support/headers/typeinfo * 18_support/headers/typeinfo/synopsis.cc * 18_support/headers/typeinfo/types_std.cc * 18_support/numeric_limits/is_signed.cc * 18_support/numeric_limits/requirements * 18_support/numeric_limits/requirements/explicit_instantiation * 18_support/numeric_limits/requirements/explicit_instantiation/1.cc * 18_support/numeric_limits/specialization_default_values.cc * 19_diagnostics/headers * 19_diagnostics/headers/cassert * 19_diagnostics/headers/cassert/macros.cc * 19_diagnostics/headers/cerrno * 19_diagnostics/headers/cerrno/macros.cc * 19_diagnostics/headers/stdexcept * 19_diagnostics/headers/stdexcept/synopsis.cc * 19_diagnostics/headers/stdexcept/types_std.cc * 20_util/headers * 20_util/headers/cstdlib * 20_util/headers/cstdlib/functions_std.cc * 20_util/headers/cstring * 20_util/headers/cstring/functions_std.cc * 20_util/headers/cstring/macros.cc * 20_util/headers/cstring/types_std.cc * 20_util/headers/ctime * 20_util/headers/ctime/functions_std.cc * 20_util/headers/ctime/macros.cc * 20_util/headers/ctime/types_std.cc * 20_util/headers/functional * 20_util/headers/functional/synopsis.cc * 20_util/headers/memory * 20_util/headers/memory/synopsis.cc * 20_util/headers/utility * 20_util/headers/utility/synopsis.cc * 20_util/headers/utility/using_namespace_std_rel_ops.cc * 20_util/memory/allocator/requirements * 20_util/memory/allocator/requirements/explicit_instantiation * 20_util/memory/allocator/requirements/explicit_instantiation/1.cc * 20_util/memory/auto_ptr/requirements * 20_util/memory/auto_ptr/requirements/explicit_instantiation * 20_util/memory/auto_ptr/requirements/explicit_instantiation/1.cc * 20_util/memory/raw_storage_iterator * 20_util/memory/raw_storage_iterator/requirements * 20_util/memory/raw_storage_iterator/requirements/base_classes.cc * 20_util/memory/raw_storage_iterator/requirements/ explicit_instantiation * 20_util/memory/raw_storage_iterator/requirements/ explicit_instantiation/1.cc * 20_util/memory/raw_storage_iterator/requirements/typedefs.cc * 20_util/utility/pair/requirements * 20_util/utility/pair/requirements/explicit_instantiation * 20_util/utility/pair/requirements/explicit_instantiation/1.cc * 21_strings/basic_string/requirements * 21_strings/basic_string/requirements/explicit_instantiation * 21_strings/basic_string/requirements/explicit_instantiation/1.cc * 21_strings/basic_string/requirements/explicit_instantiation/debug.cc * 21_strings/headers * 21_strings/headers/cctype * 21_strings/headers/cctype/functions_std.cc * 21_strings/headers/cstdlib * 21_strings/headers/cstdlib/functions_std.cc * 21_strings/headers/cstdlib/macros.cc * 21_strings/headers/cstring * 21_strings/headers/cstring/functions_std.cc * 21_strings/headers/cstring/macros.cc * 21_strings/headers/cstring/types_std.cc * 21_strings/headers/cwchar * 21_strings/headers/cwchar/functions_std.cc * 21_strings/headers/cwchar/macros.cc * 21_strings/headers/cwchar/types_std.cc * 21_strings/headers/cwctype * 21_strings/headers/cwctype/functions_std.cc * 21_strings/headers/cwctype/macros.cc * 21_strings/headers/cwctype/types_std.cc * 21_strings/headers/string * 21_strings/headers/string/synopsis.cc * 21_strings/headers/string/types_std.cc * 22_locale/codecvt_byname/requirements * 22_locale/codecvt_byname/requirements/base_classes.cc * 22_locale/codecvt_byname/requirements/explicit_instantiation.cc * 22_locale/codecvt_byname/requirements/typedefs.cc * 22_locale/codecvt/requirements * 22_locale/codecvt/requirements/base_classes.cc * 22_locale/codecvt/requirements/explicit_instantiation.cc * 22_locale/codecvt/requirements/typedefs.cc * 22_locale/collate_byname/requirements * 22_locale/collate_byname/requirements/base_classes.cc * 22_locale/collate_byname/requirements/explicit_instantiation.cc * 22_locale/collate_byname/requirements/typedefs.cc * 22_locale/collate/requirements * 22_locale/collate/requirements/base_classes.cc * 22_locale/collate/requirements/explicit_instantiation.cc * 22_locale/collate/requirements/typedefs.cc * 22_locale/ctype_base/mask.cc * 22_locale/ctype/requirements * 22_locale/ctype/requirements/base_classes.cc * 22_locale/ctype/requirements/explicit_instantiation.cc * 22_locale/ctype/requirements/typedefs.cc * 22_locale/headers * 22_locale/headers/clocale * 22_locale/headers/clocale/functions_std.cc * 22_locale/headers/clocale/macros.cc * 22_locale/headers/clocale/types_std.cc * 22_locale/headers/locale * 22_locale/headers/locale/synopsis.cc * 22_locale/headers/locale/types_std.cc * 22_locale/messages_byname/requirements * 22_locale/messages_byname/requirements/base_classes.cc * 22_locale/messages_byname/requirements/explicit_instantiation.cc * 22_locale/messages_byname/requirements/typedefs.cc * 22_locale/messages/requirements * 22_locale/messages/requirements/base_classes.cc * 22_locale/messages/requirements/explicit_instantiation.cc * 22_locale/messages/requirements/typedefs.cc * 22_locale/money_get/cons * 22_locale/money_get/cons/3.cc * 22_locale/money_get/requirements * 22_locale/money_get/requirements/base_classes.cc * 22_locale/money_get/requirements/explicit_instantiations.cc * 22_locale/money_get/requirements/typedefs.cc * 22_locale/moneypunct_byname/requirements * 22_locale/moneypunct_byname/requirements/base_classes.cc * 22_locale/moneypunct_byname/requirements/explicit_instantiation.cc * 22_locale/moneypunct_byname/requirements/typedefs.cc * 22_locale/moneypunct/requirements * 22_locale/moneypunct/requirements/false * 22_locale/moneypunct/requirements/false/base_classes.cc * 22_locale/moneypunct/requirements/false/explicit_instantiation.cc * 22_locale/moneypunct/requirements/false/intl.cc * 22_locale/moneypunct/requirements/false/typedefs.cc * 22_locale/moneypunct/requirements/true * 22_locale/moneypunct/requirements/true/base_classes.cc * 22_locale/moneypunct/requirements/true/explicit_instantiation.cc * 22_locale/moneypunct/requirements/true/intl.cc * 22_locale/moneypunct/requirements/true/typedefs.cc * 22_locale/money_put/cons * 22_locale/money_put/cons/3.cc * 22_locale/money_put/requirements * 22_locale/money_put/requirements/base_classes.cc * 22_locale/money_put/requirements/explicit_instantiation.cc * 22_locale/money_put/requirements/typedefs.cc * 22_locale/num_get/cons * 22_locale/num_get/cons/3.cc * 22_locale/num_get/requirements * 22_locale/num_get/requirements/base_classes.cc * 22_locale/num_get/requirements/explicit_instantiation.cc * 22_locale/num_get/requirements/typedefs.cc * 22_locale/numpunct_byname/requirements * 22_locale/numpunct_byname/requirements/base_classes.cc * 22_locale/numpunct_byname/requirements/explicit_instantiations.cc * 22_locale/numpunct_byname/requirements/typedefs.cc * 22_locale/numpunct/requirements * 22_locale/numpunct/requirements/base_classes.cc * 22_locale/numpunct/requirements/explicit_instantiations.cc * 22_locale/numpunct/requirements/typedefs.cc * 22_locale/num_put/cons * 22_locale/num_put/cons/3.cc * 22_locale/num_put/requirements * 22_locale/num_put/requirements/base_classes.cc * 22_locale/num_put/requirements/explicit_instantiations.cc * 22_locale/num_put/requirements/typedefs.cc * 22_locale/time_get/requirements * 22_locale/time_get/requirements/base_classes.cc * 22_locale/time_get/requirements/explicit_instantiations.cc * 22_locale/time_get/requirements/typedefs.cc * 22_locale/time_put/requirements * 22_locale/time_put/requirements/base_classes.cc * 22_locale/time_put/requirements/explicit_instantiations.cc * 22_locale/time_put/requirements/typedefs.cc * 23_containers/bitset/requirements * 23_containers/bitset/requirements/explicit_instantiation * 23_containers/bitset/requirements/explicit_instantiation/1.cc * 23_containers/deque/requirements * 23_containers/deque/requirements/explicit_instantiation * 23_containers/deque/requirements/partial_specialization * 23_containers/deque/requirements/partial_specialization/1.cc * 23_containers/headers * 23_containers/headers/bitset * 23_containers/headers/bitset/synopsis.cc * 23_containers/headers/deque * 23_containers/headers/deque/synopsis.cc * 23_containers/headers/list * 23_containers/headers/list/synopsis.cc * 23_containers/headers/map * 23_containers/headers/map/synopsis.cc * 23_containers/headers/queue * 23_containers/headers/queue/synopsis.cc * 23_containers/headers/set * 23_containers/headers/set/synopsis.cc * 23_containers/headers/stack * 23_containers/headers/stack/synopsis.cc * 23_containers/headers/vector * 23_containers/headers/vector/synopsis.cc * 23_containers/list/requirements * 23_containers/list/requirements/explicit_instantiation * 23_containers/list/requirements/partial_specialization * 23_containers/list/requirements/partial_specialization/1.cc * 23_containers/map/requirements * 23_containers/map/requirements/explicit_instantiation * 23_containers/map/requirements/partial_specialization * 23_containers/map/requirements/partial_specialization/1.cc * 23_containers/multimap/requirements * 23_containers/multimap/requirements/explicit_instantiation * 23_containers/multimap/requirements/partial_specialization * 23_containers/multimap/requirements/partial_specialization/1.cc * 23_containers/multiset/requirements * 23_containers/multiset/requirements/explicit_instantiation * 23_containers/multiset/requirements/partial_specialization * 23_containers/multiset/requirements/partial_specialization/1.cc * 23_containers/priority_queue/requirements * 23_containers/priority_queue/requirements/explicit_instantiation * 23_containers/priority_queue/requirements/explicit_instantiation/1.cc * 23_containers/queue/requirements * 23_containers/queue/requirements/explicit_instantiation * 23_containers/queue/requirements/explicit_instantiation/1.cc * 23_containers/set/requirements * 23_containers/set/requirements/explicit_instantiation * 23_containers/set/requirements/partial_specialization * 23_containers/set/requirements/partial_specialization/1.cc * 23_containers/stack/requirements * 23_containers/stack/requirements/explicit_instantiation * 23_containers/stack/requirements/explicit_instantiation/1.cc * 23_containers/vector/requirements * 23_containers/vector/requirements/explicit_instantiation * 23_containers/vector/requirements/partial_specialization * 23_containers/vector/requirements/partial_specialization/1.cc * 24_iterators/back_insert_iterator * 24_iterators/back_insert_iterator/2.cc * 24_iterators/back_insert_iterator/requirements * 24_iterators/back_insert_iterator/requirements/base_classes.cc * 24_iterators/back_insert_iterator/requirements/container.cc * 24_iterators/back_insert_iterator/requirements/ explicit_instantiation.cc * 24_iterators/back_insert_iterator/requirements/typedefs.cc * 24_iterators/front_insert_iterator * 24_iterators/front_insert_iterator/2.cc * 24_iterators/front_insert_iterator/requirements * 24_iterators/front_insert_iterator/requirements/base_classes.cc * 24_iterators/front_insert_iterator/requirements/container.cc * 24_iterators/front_insert_iterator/requirements/ explicit_instantiation.cc * 24_iterators/front_insert_iterator/requirements/typedefs.cc * 24_iterators/headers * 24_iterators/headers/iterator * 24_iterators/headers/iterator/synopsis.cc * 24_iterators/headers/iterator/types_std.cc * 24_iterators/insert_iterator * 24_iterators/insert_iterator/2.cc * 24_iterators/insert_iterator/requirements * 24_iterators/insert_iterator/requirements/base_classes.cc * 24_iterators/insert_iterator/requirements/container.cc * 24_iterators/insert_iterator/requirements/explicit_instantiation.cc * 24_iterators/insert_iterator/requirements/typedefs.cc * 24_iterators/istreambuf_iterator/requirements * 24_iterators/istreambuf_iterator/requirements/base_classes.cc * 24_iterators/istreambuf_iterator/requirements/ explicit_instantiation.cc * 24_iterators/istreambuf_iterator/requirements/typedefs.cc * 24_iterators/istream_iterator * 24_iterators/istream_iterator/2.cc * 24_iterators/istream_iterator/requirements * 24_iterators/istream_iterator/requirements/base_classes.cc * 24_iterators/istream_iterator/requirements/explicit_instantiation.cc * 24_iterators/istream_iterator/requirements/typedefs.cc * 24_iterators/ostreambuf_iterator/requirements * 24_iterators/ostreambuf_iterator/requirements/base_classes.cc * 24_iterators/ostreambuf_iterator/requirements/ explicit_instantiation.cc * 24_iterators/ostreambuf_iterator/requirements/typedefs.cc * 24_iterators/ostream_iterator * 24_iterators/ostream_iterator/requirements * 24_iterators/ostream_iterator/requirements/base_classes.cc * 24_iterators/ostream_iterator/requirements/explicit_instantiation.cc * 24_iterators/ostream_iterator/requirements/typedefs.cc * 24_iterators/random_access_iterator * 24_iterators/random_access_iterator/26020.cc * 24_iterators/random_access_iterator/string_vector_iterators.cc * 24_iterators/reverse_iterator/requirements * 24_iterators/reverse_iterator/requirements/base_classes.cc * 24_iterators/reverse_iterator/requirements/current.cc * 24_iterators/reverse_iterator/requirements/explicit_instantiation.cc * 24_iterators/reverse_iterator/requirements/typedefs.cc * 25_algorithms/headers * 25_algorithms/headers/algorithm * 25_algorithms/headers/algorithm/synopsis.cc * 25_algorithms/headers/cstdlib * 25_algorithms/headers/cstdlib/functions_std.cc * 26_numerics/headers * 26_numerics/headers/cmath * 26_numerics/headers/cmath/19322.cc * 26_numerics/headers/cmath/c99_classification_macros_c.cc * 26_numerics/headers/cmath/c99_classification_macros_c++.cc * 26_numerics/headers/cmath/c_math.cc * 26_numerics/headers/cmath/c_math_dynamic.cc * 26_numerics/headers/cmath/fabs_inline.cc * 26_numerics/headers/cmath/functions_std.cc * 26_numerics/headers/cmath/macros.cc * 26_numerics/headers/cmath/overloads.cc * 26_numerics/headers/cmath/powi.cc * 26_numerics/headers/complex * 26_numerics/headers/complex/synopsis.cc * 26_numerics/headers/cstdlib * 26_numerics/headers/cstdlib/13943.cc * 26_numerics/headers/cstdlib/2190.cc * 26_numerics/headers/cstdlib/functions_std.cc * 26_numerics/headers/cstdlib/macros.cc * 26_numerics/headers/cstdlib/types_std.cc * 26_numerics/headers/numeric * 26_numerics/headers/numeric/synopsis.cc * 26_numerics/headers/valarray * 26_numerics/headers/valarray/synopsis.cc * 26_numerics/headers/valarray/types_std.cc * 26_numerics/numeric_arrays * 26_numerics/numeric_operations * 27_io/basic_filebuf/cons/2020.cc * 27_io/basic_filebuf/requirements * 27_io/basic_filebuf/requirements/base_classes.cc * 27_io/basic_filebuf/requirements/explicit_instantiation.cc * 27_io/basic_filebuf/requirements/typedefs.cc * 27_io/basic_fstream/cons * 27_io/basic_fstream/cons/3.cc * 27_io/basic_fstream/requirements * 27_io/basic_fstream/requirements/base_classes.cc * 27_io/basic_fstream/requirements/explicit_instantiation.cc * 27_io/basic_fstream/requirements/typedefs.cc * 27_io/basic_ifstream/cons/2020.cc * 27_io/basic_ifstream/requirements * 27_io/basic_ifstream/requirements/base_classes.cc * 27_io/basic_ifstream/requirements/explicit_instantiation.cc * 27_io/basic_ifstream/requirements/typedefs.cc * 27_io/basic_ios/cons/2020.cc * 27_io/basic_ios/requirements * 27_io/basic_ios/requirements/base_classes.cc * 27_io/basic_ios/requirements/explicit_instantiation.cc * 27_io/basic_ios/requirements/typedefs.cc * 27_io/basic_iostream/cons * 27_io/basic_iostream/cons/2020.cc * 27_io/basic_iostream/requirements * 27_io/basic_iostream/requirements/base_classes.cc * 27_io/basic_iostream/requirements/explicit_instantiation.cc * 27_io/basic_iostream/requirements/typedefs.cc * 27_io/basic_istream/cons * 27_io/basic_istream/cons/3.cc * 27_io/basic_istream/requirements * 27_io/basic_istream/requirements/base_classes.cc * 27_io/basic_istream/requirements/explicit_instantiation.cc * 27_io/basic_istream/requirements/typedefs.cc * 27_io/basic_istringstream/cons * 27_io/basic_istringstream/cons/2020.cc * 27_io/basic_istringstream/requirements * 27_io/basic_istringstream/requirements/base_classes.cc * 27_io/basic_istringstream/requirements/explicit_instantiation.cc * 27_io/basic_istringstream/requirements/typedefs.cc * 27_io/basic_ofstream/cons/2020.cc * 27_io/basic_ofstream/requirements * 27_io/basic_ofstream/requirements/base_classes.cc * 27_io/basic_ofstream/requirements/explicit_instantiations.cc * 27_io/basic_ofstream/requirements/typedefs.cc * 27_io/basic_ostream/cons/2020.cc * 27_io/basic_ostream/requirements * 27_io/basic_ostream/requirements/base_classes.cc * 27_io/basic_ostream/requirements/explicit_instantiation.cc * 27_io/basic_ostream/requirements/typedefs.cc * 27_io/basic_ostringstream/cons/2020.cc * 27_io/basic_ostringstream/requirements * 27_io/basic_ostringstream/requirements/base_classes.cc * 27_io/basic_ostringstream/requirements/explicit_instantiation.cc * 27_io/basic_ostringstream/requirements/typedefs.cc * 27_io/basic_streambuf/cons/2020.cc * 27_io/basic_streambuf/requirements * 27_io/basic_streambuf/requirements/base_classes.cc * 27_io/basic_streambuf/requirements/typedefs.cc * 27_io/basic_stringbuf/cons/2020.cc * 27_io/basic_stringbuf/requirements * 27_io/basic_stringbuf/requirements/base_classes.cc * 27_io/basic_stringbuf/requirements/explicit_instantiation * 27_io/basic_stringbuf/requirements/explicit_instantiation/2.cc * 27_io/basic_stringbuf/requirements/explicit_instantiation/4.cc * 27_io/basic_stringbuf/requirements/typedefs.cc * 27_io/basic_stringstream/cons * 27_io/basic_stringstream/cons/2020.cc * 27_io/basic_stringstream/requirements * 27_io/basic_stringstream/requirements/base_classes.cc * 27_io/basic_stringstream/requirements/explicit_instantiation.cc * 27_io/basic_stringstream/requirements/typedefs.cc * 27_io/fpos/requirements * 27_io/fpos/requirements/explicit_instantiation.cc * 27_io/headers * 27_io/headers/cstdio * 27_io/headers/cstdio/functions_std.cc * 27_io/headers/cstdio/macros.cc * 27_io/headers/cstdio/types_std.cc * 27_io/headers/cstdlib * 27_io/headers/fstream * 27_io/headers/fstream/synopsis.cc * 27_io/headers/fstream/types_std.cc * 27_io/headers/iomanip * 27_io/headers/iomanip/synopsis.cc * 27_io/headers/ios * 27_io/headers/ios/synopsis.cc * 27_io/headers/iostream * 27_io/headers/iostream/synopsis.cc * 27_io/headers/iostream/types_std.cc * 27_io/headers/ios/types_std.cc * 27_io/headers/istream * 27_io/headers/istream/synopsis.cc * 27_io/headers/istream/types_std.cc * 27_io/headers/ostream * 27_io/headers/ostream/synopsis.cc * 27_io/headers/ostream/types_std.cc * 27_io/headers/sstream * 27_io/headers/sstream/synopsis.cc * 27_io/headers/sstream/types_std.cc * 27_io/headers/streambuf * 27_io/headers/streambuf/synopsis.cc * 27_io/headers/streambuf/types_std.cc * ext/debug_allocator/explicit_instantiation.cc * ext/hash_map/requirements * ext/hash_map/requirements/explicit_instantiation.cc * ext/hash_set/requirements * ext/hash_set/requirements/explicit_instantiation.cc * ext/malloc_allocator/explicit_instantiation.cc * ext/mt_allocator/explicit_instantiation.cc * ext/pool_allocator/explicit_instantiation.cc * ext/slist/requirements * ext/slist/requirements/explicit_instantiation.cc * ext/stdio_filebuf/requirements * ext/stdio_filebuf/requirements/explicit_instantiation.cc * ext/vstring/requirements * ext/vstring/requirements/explicit_instantiation * tr1/2_general_utilities/headers * tr1/2_general_utilities/headers/functional * tr1/2_general_utilities/headers/functional/synopsis.cc * tr1/2_general_utilities/headers/memory * tr1/2_general_utilities/headers/memory/synopsis.cc * tr1/2_general_utilities/headers/memory/types_std_tr1.cc * tr1/2_general_utilities/memory/enable_shared_from_this/requirements * tr1/2_general_utilities/memory/enable_shared_from_this/ requirements/explicit_instantiation * tr1/2_general_utilities/memory/shared_ptr/requirements * tr1/2_general_utilities/memory/shared_ptr/requirements/ explicit_instantiation * tr1/2_general_utilities/memory/weak_ptr/requirements * tr1/2_general_utilities/memory/weak_ptr/requirements/ explicit_instantiation * tr1/3_function_objects/headers * tr1/3_function_objects/headers/functional * tr1/3_function_objects/headers/functional/synopsis.cc * tr1/3_function_objects/headers/functional/types_std_tr1.cc * tr1/3_function_objects/headers/functional/ using_namespace_std_tr1_placeholders.cc * tr1/4_metaprogramming/headers * tr1/4_metaprogramming/headers/type_traits * tr1/4_metaprogramming/headers/type_traits/synopsis.cc * tr1/4_metaprogramming/headers/type_traits/types_std_tr1.cc * tr1/5_numerical_facilities/headers * tr1/5_numerical_facilities/headers/random * tr1/5_numerical_facilities/headers/random/synopsis.cc * tr1/5_numerical_facilities/headers/random/types_std_tr1.cc * tr1/5_numerical_facilities/random/discard_block/ requirements/typedefs.cc * tr1/6_containers/array/requirements/explicit_instantiation.cc * tr1/6_containers/hash * tr1/6_containers/hash/requirements * tr1/6_containers/hash/requirements/base_classes.cc * tr1/6_containers/hash/requirements/explicit_instantiation.cc * tr1/6_containers/headers * tr1/6_containers/headers/array * tr1/6_containers/headers/array/synopsis.cc * tr1/6_containers/headers/functional * tr1/6_containers/headers/functional/synopsis.cc * tr1/6_containers/headers/tuple * tr1/6_containers/headers/tuple/synopsis.cc * tr1/6_containers/headers/tuple/types_std_tr1.cc * tr1/6_containers/headers/unordered_map * tr1/6_containers/headers/unordered_map/synopsis.cc * tr1/6_containers/headers/unordered_set * tr1/6_containers/headers/unordered_set/synopsis.cc * tr1/6_containers/tuple/requirements * tr1/6_containers/tuple/requirements/explicit_instantiation.cc * tr1/6_containers/unordered_map * tr1/6_containers/unordered_map/24064.cc * tr1/6_containers/unordered_map/capacity * tr1/6_containers/unordered_map/capacity/29134-map.cc * tr1/6_containers/unordered_map/erase * tr1/6_containers/unordered_map/erase/24061-map.cc * tr1/6_containers/unordered_map/find * tr1/6_containers/unordered_map/find/map1.cc * tr1/6_containers/unordered_map/insert * tr1/6_containers/unordered_map/insert/24061-map.cc * tr1/6_containers/unordered_map/insert/array_syntax.cc * tr1/6_containers/unordered_map/insert/map_range.cc * tr1/6_containers/unordered_map/insert/map_single.cc * tr1/6_containers/unordered_map/requirements * tr1/6_containers/unordered_map/requirements/explicit_instantiation.cc * tr1/6_containers/unordered_map/requirements/iterator_neg.cc * tr1/6_containers/unordered_map/requirements/iterator_null_neg.cc * tr1/6_containers/unordered_map/swap * tr1/6_containers/unordered_map/swap/1.cc * tr1/6_containers/unordered_map/swap/2.cc * tr1/6_containers/unordered_multimap * tr1/6_containers/unordered_multimap/capacity * tr1/6_containers/unordered_multimap/capacity/29134-multimap.cc * tr1/6_containers/unordered_multimap/erase * tr1/6_containers/unordered_multimap/erase/24061-multimap.cc * tr1/6_containers/unordered_multimap/find * tr1/6_containers/unordered_multimap/find/multimap1.cc * tr1/6_containers/unordered_multimap/insert * tr1/6_containers/unordered_multimap/insert/24061-multimap.cc * tr1/6_containers/unordered_multimap/insert/multimap_range.cc * tr1/6_containers/unordered_multimap/insert/multimap_single.cc * tr1/6_containers/unordered_multimap/requirements * tr1/6_containers/unordered_multimap/requirements/ explicit_instantiation.cc * tr1/6_containers/unordered_multimap/requirements/iterator_neg.cc * tr1/6_containers/unordered_multimap/requirements/iterator_null_neg.cc * tr1/6_containers/unordered_multimap/swap * tr1/6_containers/unordered_multimap/swap/1.cc * tr1/6_containers/unordered_multimap/swap/2.cc * tr1/6_containers/unordered_multiset * tr1/6_containers/unordered_multiset/24054.cc * tr1/6_containers/unordered_multiset/capacity * tr1/6_containers/unordered_multiset/capacity/29134-multiset.cc * tr1/6_containers/unordered_multiset/erase * tr1/6_containers/unordered_multiset/erase/24061-multiset.cc * tr1/6_containers/unordered_multiset/find * tr1/6_containers/unordered_multiset/find/multiset1.cc * tr1/6_containers/unordered_multiset/insert * tr1/6_containers/unordered_multiset/insert/24061-multiset.cc * tr1/6_containers/unordered_multiset/insert/multiset_range.cc * tr1/6_containers/unordered_multiset/insert/multiset_single.cc * tr1/6_containers/unordered_multiset/requirements * tr1/6_containers/unordered_multiset/requirements/ explicit_instantiation.cc * tr1/6_containers/unordered_multiset/requirements/iterator_neg.cc * tr1/6_containers/unordered_multiset/requirements/iterator_null_neg.cc * tr1/6_containers/unordered_multiset/swap * tr1/6_containers/unordered_multiset/swap/1.cc * tr1/6_containers/unordered_multiset/swap/2.cc * tr1/6_containers/unordered_set * tr1/6_containers/unordered_set/23053.cc * tr1/6_containers/unordered_set/23465.cc * tr1/6_containers/unordered_set/26127.cc * tr1/6_containers/unordered_set/26132.cc * tr1/6_containers/unordered_set/capacity * tr1/6_containers/unordered_set/capacity/29134-set.cc * tr1/6_containers/unordered_set/erase * tr1/6_containers/unordered_set/erase/24061-set.cc * tr1/6_containers/unordered_set/find * tr1/6_containers/unordered_set/find/set1.cc * tr1/6_containers/unordered_set/insert * tr1/6_containers/unordered_set/insert/24061-set.cc * tr1/6_containers/unordered_set/insert/set_range.cc * tr1/6_containers/unordered_set/insert/set_single.cc * tr1/6_containers/unordered_set/requirements * tr1/6_containers/unordered_set/requirements/explicit_instantiation.cc * tr1/6_containers/unordered_set/requirements/iterator_neg.cc * tr1/6_containers/unordered_set/requirements/iterator_null_neg.cc * tr1/6_containers/unordered_set/requirements/ iterators_default_constructor.cc * tr1/6_containers/unordered_set/swap * tr1/6_containers/unordered_set/swap/1.cc * tr1/6_containers/unordered_set/swap/2.cc * tr1/using_namespace_std_tr1.cc Deleted: * 17_intro/header_cassert.cc * 17_intro/header_cerrno.cc * 17_intro/header_csetjmp.cc * 17_intro/header_cstdarg.cc * 17_intro/header_cstddef.cc * 17_intro/header_cstdio.cc * 17_intro/header_cstdlib.cc * 17_intro/header_cstring.cc * 17_intro/header_ctime.cc * 17_intro/header_cwchar.cc * 17_intro/header_cwctype.cc * 17_intro/header_fstream.cc * 17_intro/header_iomanip.cc * 17_intro/header_ios.cc * 17_intro/header_iosfwd.cc * 17_intro/header_iostream.cc * 17_intro/header_istream.cc * 17_intro/header_ostream.cc * 17_intro/headers.cc * 17_intro/headers_c++_c++0x_compat.cc * 17_intro/headers_c.cc * 17_intro/headers_c++.cc * 17_intro/header_sstream.cc * 17_intro/header_streambuf.cc * 17_intro/no_assert_neg.cc * 18_support/numeric_limits/sign.cc * 18_support/numeric_limits/specialization.cc * 20_util/memory/raw_storage_iterator.cc * 21_strings/basic_string/1.cc * 21_strings/basic_string/2.cc * 22_locale/codecvt/1.cc * 22_locale/codecvt/2.cc * 22_locale/codecvt_byname/1.cc * 22_locale/collate/1.cc * 22_locale/collate/2.cc * 22_locale/collate_byname/1.cc * 22_locale/ctype/1.cc * 22_locale/ctype_base/1.cc * 22_locale/messages/1.cc * 22_locale/messages/2.cc * 22_locale/messages_byname/1.cc * 22_locale/money_get/1.cc * 22_locale/money_get/2.cc * 22_locale/money_get/3.cc * 22_locale/moneypunct/1.cc * 22_locale/moneypunct/2.cc * 22_locale/moneypunct/3.cc * 22_locale/moneypunct_byname/1.cc * 22_locale/money_put/1.cc * 22_locale/money_put/2.cc * 22_locale/money_put/3.cc * 22_locale/num_get/1.cc * 22_locale/num_get/2.cc * 22_locale/num_get/3.cc * 22_locale/numpunct/1.cc * 22_locale/numpunct/2.cc * 22_locale/numpunct_byname/1.cc * 22_locale/num_put/1.cc * 22_locale/num_put/2.cc * 22_locale/num_put/3.cc * 22_locale/time_get/1.cc * 22_locale/time_get/2.cc * 22_locale/time_put/1.cc * 22_locale/time_put/2.cc * 23_containers/deque/1.cc * 23_containers/deque/explicit_instantiation * 23_containers/deque/explicit_instantiation/1.cc * 23_containers/deque/explicit_instantiation/2.cc * 23_containers/deque/explicit_instantiation/3.cc * 23_containers/list/1.cc * 23_containers/list/explicit_instantiation * 23_containers/list/explicit_instantiation/1.cc * 23_containers/list/explicit_instantiation/2.cc * 23_containers/list/explicit_instantiation/3.cc * 23_containers/map/1.cc * 23_containers/map/explicit_instantiation * 23_containers/map/explicit_instantiation/1.cc * 23_containers/map/explicit_instantiation/2.cc * 23_containers/map/explicit_instantiation/3.cc * 23_containers/multimap/1.cc * 23_containers/multimap/explicit_instantiation * 23_containers/multimap/explicit_instantiation/1.cc * 23_containers/multimap/explicit_instantiation/2.cc * 23_containers/multimap/explicit_instantiation/3.cc * 23_containers/multiset/1.cc * 23_containers/multiset/explicit_instantiation * 23_containers/multiset/explicit_instantiation/1.cc * 23_containers/multiset/explicit_instantiation/2.cc * 23_containers/multiset/explicit_instantiation/3.cc * 23_containers/set/1.cc * 23_containers/set/explicit_instantiation * 23_containers/set/explicit_instantiation/1.cc * 23_containers/set/explicit_instantiation/2.cc * 23_containers/set/explicit_instantiation/3.cc * 23_containers/vector/1.cc * 23_containers/vector/explicit_instantiation * 23_containers/vector/explicit_instantiation/1.cc * 23_containers/vector/explicit_instantiation/2.cc * 23_containers/vector/explicit_instantiation/3.cc * 24_iterators/26020.cc * 24_iterators/back_insert_iterator.cc * 24_iterators/front_insert_iterator.cc * 24_iterators/insert_iterator.cc * 24_iterators/istreambuf_iterator/1.cc * 24_iterators/istream_iterator.cc * 24_iterators/iterator.cc * 24_iterators/ostreambuf_iterator/1.cc * 24_iterators/ostream_iterator.cc * 24_iterators/reverse_iterator/1.cc * 26_numerics/cmath * 26_numerics/cmath/19322.cc * 26_numerics/cmath/c99_classification_macros_c.cc * 26_numerics/cmath/c99_classification_macros_c++.cc * 26_numerics/cmath/c_math.cc * 26_numerics/cmath/c_math_dynamic.cc * 26_numerics/cmath/fabs_inline.cc * 26_numerics/cmath/overloads.cc * 26_numerics/cmath/powi.cc * 26_numerics/cstdlib * 26_numerics/cstdlib/13943.cc * 26_numerics/numeric * 26_numerics/numeric/sum_diff.cc * 26_numerics/valarray * 26_numerics/valarray/27867.cc * 26_numerics/valarray/28277.cc * 26_numerics/valarray/30416.cc * 26_numerics/valarray/binary_closure.cc * 26_numerics/valarray/dr543.cc * 26_numerics/valarray/slice_array_assignment.cc * 26_numerics/valarray/slice.cc * 26_numerics/valarray/valarray.cc * 26_numerics/valarray/valarray_const_bracket.cc * 26_numerics/valarray/valarray_name_lookup.cc * 26_numerics/valarray/valarray_operators.cc * 26_numerics/valarray/valarray_subset_assignment.cc * 27_io/basic_filebuf/1.cc * 27_io/basic_filebuf/2.cc * 27_io/basic_filebuf/3.cc * 27_io/basic_filebuf/4.cc * 27_io/basic_fstream/1.cc * 27_io/basic_fstream/2.cc * 27_io/basic_fstream/3.cc * 27_io/basic_fstream/4.cc * 27_io/basic_ifstream/1.cc * 27_io/basic_ifstream/2.cc * 27_io/basic_ifstream/3.cc * 27_io/basic_ifstream/4.cc * 27_io/basic_ios/1.cc * 27_io/basic_ios/2.cc * 27_io/basic_ios/3.cc * 27_io/basic_ios/4.cc * 27_io/basic_iostream/1.cc * 27_io/basic_iostream/2.cc * 27_io/basic_iostream/3.cc * 27_io/basic_iostream/4.cc * 27_io/basic_istream/1.cc * 27_io/basic_istream/2.cc * 27_io/basic_istream/3.cc * 27_io/basic_istream/4.cc * 27_io/basic_istringstream/1.cc * 27_io/basic_istringstream/2.cc * 27_io/basic_istringstream/3.cc * 27_io/basic_istringstream/4.cc * 27_io/basic_ofstream/1.cc * 27_io/basic_ofstream/2.cc * 27_io/basic_ofstream/3.cc * 27_io/basic_ofstream/4.cc * 27_io/basic_ostream/1.cc * 27_io/basic_ostream/2.cc * 27_io/basic_ostream/3.cc * 27_io/basic_ostream/4.cc * 27_io/basic_ostringstream/1.cc * 27_io/basic_ostringstream/2.cc * 27_io/basic_ostringstream/3.cc * 27_io/basic_ostringstream/4.cc * 27_io/basic_streambuf/1.cc * 27_io/basic_streambuf/2.cc * 27_io/basic_streambuf/3.cc * 27_io/basic_stringbuf/1.cc * 27_io/basic_stringbuf/2.cc * 27_io/basic_stringbuf/3.cc * 27_io/basic_stringbuf/4.cc * 27_io/basic_stringbuf/5.cc * 27_io/basic_stringstream/1.cc * 27_io/basic_stringstream/2.cc * 27_io/basic_stringstream/3.cc * 27_io/basic_stringstream/4.cc * 27_io/fpos/1.cc * ext/debug_allocator/instantiate.cc * ext/hash_map/instantiate.cc * ext/hash_set/instantiate.cc * ext/malloc_allocator/instantiate.cc * ext/mt_allocator/instantiate.cc * ext/pool_allocator/instantiate.cc * ext/slist/instantiate.cc * ext/stdio_filebuf/char/1.cc * ext/vstring/explicit_instantiation * ext/vstring/explicit_instantiation/1.cc * ext/vstring/explicit_instantiation/2.cc * ext/vstring/explicit_instantiation/char * ext/vstring/explicit_instantiation/char/1.cc * ext/vstring/explicit_instantiation/wchar_t * ext/vstring/explicit_instantiation/wchar_t/1.cc * tr1/2_general_utilities/memory/enable_shared_from_this/ explicit_instantiation * tr1/2_general_utilities/memory/enable_shared_from_this/ explicit_instantiation/1.cc * tr1/2_general_utilities/memory/shared_ptr/explicit_instantiation * tr1/2_general_utilities/memory/shared_ptr/explicit_instantiation/1.cc * tr1/2_general_utilities/memory/weak_ptr/explicit_instantiation * tr1/2_general_utilities/memory/weak_ptr/explicit_instantiation/1.cc * tr1/5_numerical_facilities/random/discard_block/requirements/ requirements.cc * tr1/6_containers/array/requirements/instantiate.cc * tr1/6_containers/unordered * tr1/6_containers/unordered/23781.cc * tr1/6_containers/unordered/capacity * tr1/6_containers/unordered/capacity/29134-map.cc * tr1/6_containers/unordered/capacity/29134-multimap.cc * tr1/6_containers/unordered/capacity/29134-multiset.cc * tr1/6_containers/unordered/capacity/29134-set.cc * tr1/6_containers/unordered/erase * tr1/6_containers/unordered/erase/24061-map.cc * tr1/6_containers/unordered/erase/24061-multimap.cc * tr1/6_containers/unordered/erase/24061-multiset.cc * tr1/6_containers/unordered/erase/24061-set.cc * tr1/6_containers/unordered/find * tr1/6_containers/unordered/find/map1.cc * tr1/6_containers/unordered/find/multimap1.cc * tr1/6_containers/unordered/find/multiset1.cc * tr1/6_containers/unordered/find/set1.cc * tr1/6_containers/unordered/hash * tr1/6_containers/unordered/hash/24799.cc * tr1/6_containers/unordered/hashtable * tr1/6_containers/unordered/hashtable/23053.cc * tr1/6_containers/unordered/hashtable/23465.cc * tr1/6_containers/unordered/hashtable/24054.cc * tr1/6_containers/unordered/hashtable/24064.cc * tr1/6_containers/unordered/hashtable/26127.cc * tr1/6_containers/unordered/hashtable/26132.cc * tr1/6_containers/unordered/hashtable/iterators_default_constructor.cc * tr1/6_containers/unordered/insert * tr1/6_containers/unordered/insert/24061-map.cc * tr1/6_containers/unordered/insert/24061-multimap.cc * tr1/6_containers/unordered/insert/24061-multiset.cc * tr1/6_containers/unordered/insert/24061-set.cc * tr1/6_containers/unordered/insert/array_syntax.cc * tr1/6_containers/unordered/insert/map_range.cc * tr1/6_containers/unordered/insert/map_single.cc * tr1/6_containers/unordered/insert/multimap_range.cc * tr1/6_containers/unordered/insert/multimap_single.cc * tr1/6_containers/unordered/insert/multiset_range.cc * tr1/6_containers/unordered/insert/multiset_single.cc * tr1/6_containers/unordered/insert/set_range.cc * tr1/6_containers/unordered/insert/set_single.cc * tr1/6_containers/unordered/instantiate * tr1/6_containers/unordered/instantiate/hash.cc * tr1/6_containers/unordered/instantiate/map.cc * tr1/6_containers/unordered/instantiate/multimap.cc * tr1/6_containers/unordered/instantiate/multiset.cc * tr1/6_containers/unordered/instantiate/set.cc * tr1/6_containers/unordered/swap * tr1/6_containers/unordered/swap/unordered_map * tr1/6_containers/unordered/swap/unordered_map/1.cc * tr1/6_containers/unordered/swap/unordered_map/2.cc * tr1/6_containers/unordered/swap/unordered_multimap * tr1/6_containers/unordered/swap/unordered_multimap/1.cc * tr1/6_containers/unordered/swap/unordered_multimap/2.cc * tr1/6_containers/unordered/swap/unordered_multiset * tr1/6_containers/unordered/swap/unordered_multiset/1.cc * tr1/6_containers/unordered/swap/unordered_multiset/2.cc * tr1/6_containers/unordered/swap/unordered_set * tr1/6_containers/unordered/swap/unordered_set/1.cc * tr1/6_containers/unordered/swap/unordered_set/2.cc * tr1/6_containers/unordered/types * tr1/6_containers/unordered/types/map_iterator.cc * tr1/6_containers/unordered/types/multimap_iterator.cc * tr1/6_containers/unordered/types/multiset_iterator.cc * tr1/6_containers/unordered/types/set_iterator.cc * 24_iterators/reverse_iterator/2.cc: To just one non-requirements test. * ext/headers.cc: Add new includes. 2007-02-18 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_algobase.h: Do not include <climits>, use std::numeric_limits. * include/bits/stl_bvector.h: Use __CHAR_BIT__. * config/locale/gnu/codecvt_members.cc: Include <climits>. * config/locale/generic/codecvt_members.cc: Likewise. * include/std/string: Do not include <algorithm>; do not include <memory>, include <bits/allocator.h> instead. * include/ext/vstring_fwd.h: Likewise. * include/ext/vstring_util.h: Do not include <algorithm>. * include/tr1/hashtable_policy.h: Include <algorithm>. * testsuite/21_strings/basic_string/replace/char/1.cc: Likewise. * testsuite/21_strings/basic_string/replace/wchar_t/1.cc: Likewise. * testsuite/23_containers/bitset/cons/1.cc: Likewise. * testsuite/util/testsuite_character.h: Likewise. * config/locale/gnu/codecvt_members.cc: Also include <cstdlib>, for MB_CUR_MAX. * config/locale/generic/codecvt_members.cc: Likewise. ........ r122169 | ghazi | 2007-02-20 11:29:48 -0800 (Tue, 20 Feb 2007) | 8 lines * fold-const.c (tree_expr_nonnegative_warnv_p): Handle scalb, scalbn and scalbln. testsuite: * gcc.dg/torture/builtin-nonneg-1.c: Add checks for scalb, scalbn and scalbln. ........ r122170 | doko | 2007-02-20 11:46:57 -0800 (Tue, 20 Feb 2007) | 23 lines ChangeLog 2007-02-20 Matthias Klose <doko@ubuntu.com> * doc/Makefile.am: Add rules to build and install man pages from texinfo docs. * doc/hacking.texinfo doc/tools.texinfo, doc/vmintegration.texinfo: Rename, prefix files with "cp-". * doc/cp-tools.texinfo: Add markup for man page generation, add documentation for command line options for gjar, gjavah, gnative2ascii, gorbd, grmid, grmiregistry, gserialver, gtnameserv. doc/texi2pod.pl: New, taken from the GCC sources. ChangeLog.gcj 2007-02-20 Matthias Klose <doko@ubuntu.com> * Merge doc update from classpath HEAD. * doc/texi2pod.pl: Not imported. * doc/Makefile.am: Use GCC's texi2pod.pl * doc/Makefile.in: Regenerate. ........ r122171 | bkoz | 2007-02-20 11:47:35 -0800 (Tue, 20 Feb 2007) | 175 lines 2007-02-20 Benjamin Kosnik <bkoz@redhat.com> Directory layout flattening. Added in testsuite: * 20_util/allocator * 20_util/auto_ptr * 20_util/function_objects * 20_util/function_objects/binders * 20_util/function_objects/binders/1.cc * 20_util/function_objects/binders/3113.cc * 20_util/function_objects/comparisons.cc * 20_util/pair * 20_util/raw_storage_iterator * 20_util/rel_ops.cc * 20_util/specialized_algorithms * 20_util/specialized_algorithms/16505.cc * 20_util/temporary_buffer.cc * 26_numerics/numeric_arrays/slice_array * 26_numerics/numeric_arrays/slice_array/array_assignment.cc * 26_numerics/numeric_arrays/slice_array/requirements * 26_numerics/numeric_arrays/slice_array/requirements/ explicit_instantiation.cc * 26_numerics/numeric_arrays/slice_array/requirements/typedefs.cc * 26_numerics/numeric_arrays/valarray * 26_numerics/numeric_arrays/valarray/27867.cc * 26_numerics/numeric_arrays/valarray/28277.cc * 26_numerics/numeric_arrays/valarray/30416.cc * 26_numerics/numeric_arrays/valarray/algo.cc * 26_numerics/numeric_arrays/valarray/binary_closure.cc * 26_numerics/numeric_arrays/valarray/const_bracket.cc * 26_numerics/numeric_arrays/valarray/dr543.cc * 26_numerics/numeric_arrays/valarray/name_lookup.cc * 26_numerics/numeric_arrays/valarray/operators.cc * 26_numerics/numeric_arrays/valarray/requirements * 26_numerics/numeric_arrays/valarray/requirements/ explicit_instantiation.cc * 26_numerics/numeric_arrays/valarray/requirements/typedefs.cc * 26_numerics/numeric_arrays/valarray/subset_assignment.cc * tr1/2_general_utilities/enable_shared_from_this * tr1/2_general_utilities/shared_ptr * tr1/2_general_utilities/weak_ptr Deleted in testsuite: * 20_util/functional * 20_util/functional/binders * 20_util/functional/binders/1.cc * 20_util/functional/binders/3113.cc * 20_util/functional/comparisons.cc * 20_util/memory * 20_util/memory/16505.cc * 20_util/memory/allocator * 20_util/memory/allocator/10378.cc * 20_util/memory/allocator/14176.cc * 20_util/memory/allocator/1.cc * 20_util/memory/allocator/8230.cc * 20_util/memory/allocator/requirements * 20_util/memory/allocator/requirements/explicit_instantiation * 20_util/memory/allocator/requirements/explicit_instantiation/1.cc * 20_util/memory/auto_ptr * 20_util/memory/auto_ptr/1.cc * 20_util/memory/auto_ptr/2.cc * 20_util/memory/auto_ptr/3946.cc * 20_util/memory/auto_ptr/3.cc * 20_util/memory/auto_ptr/4.cc * 20_util/memory/auto_ptr/5.cc * 20_util/memory/auto_ptr/6.cc * 20_util/memory/auto_ptr/7.cc * 20_util/memory/auto_ptr/assign_neg.cc * 20_util/memory/auto_ptr/requirements * 20_util/memory/auto_ptr/requirements/explicit_instantiation * 20_util/memory/auto_ptr/requirements/explicit_instantiation/1.cc * 20_util/memory/raw_storage_iterator * 20_util/memory/raw_storage_iterator/requirements * 20_util/memory/raw_storage_iterator/requirements/base_classes.cc * 20_util/memory/raw_storage_iterator/requirements/ explicit_instantiation * 20_util/memory/raw_storage_iterator/requirements/ explicit_instantiation/1.cc * 20_util/memory/raw_storage_iterator/requirements/typedefs.cc * 20_util/memory/temporary_buffer.cc * 20_util/utility * 20_util/utility/pair * 20_util/utility/pair/1.cc * 20_util/utility/pair/2.cc * 20_util/utility/pair/3.cc * 20_util/utility/pair/4.cc * 20_util/utility/pair/requirements * 20_util/utility/pair/requirements/explicit_instantiation * 20_util/utility/pair/requirements/explicit_instantiation/1.cc * 20_util/utility/rel_ops.cc * 26_numerics/numeric_arrays/27867.cc * 26_numerics/numeric_arrays/28277.cc * 26_numerics/numeric_arrays/30416.cc * 26_numerics/numeric_arrays/binary_closure.cc * 26_numerics/numeric_arrays/dr543.cc * 26_numerics/numeric_arrays/slice_array_assignment.cc * 26_numerics/numeric_arrays/valarray.cc * 26_numerics/numeric_arrays/valarray_const_bracket.cc * 26_numerics/numeric_arrays/valarray_name_lookup.cc * 26_numerics/numeric_arrays/valarray_operators.cc * 26_numerics/numeric_arrays/valarray_subset_assignment.cc * tr1/2_general_utilities/memory * tr1/2_general_utilities/memory/enable_shared_from_this * tr1/2_general_utilities/memory/enable_shared_from_this/1.cc * tr1/2_general_utilities/memory/enable_shared_from_this/not_shared2.cc * tr1/2_general_utilities/memory/enable_shared_from_this/not_shared3.cc * tr1/2_general_utilities/memory/enable_shared_from_this/not_shared.cc * tr1/2_general_utilities/memory/enable_shared_from_this/requirements * tr1/2_general_utilities/memory/enable_shared_from_this/ requirements/explicit_instantiation * tr1/2_general_utilities/memory/enable_shared_from_this/ requirements/explicit_instantiation/1.cc * tr1/2_general_utilities/memory/enable_shared_from_this/shared.cc * tr1/2_general_utilities/memory/enable_shared_from_this/ still_shared.cc * tr1/2_general_utilities/memory/shared_ptr * tr1/2_general_utilities/memory/shared_ptr/assign * tr1/2_general_utilities/memory/shared_ptr/assign/assign.cc * tr1/2_general_utilities/memory/shared_ptr/assign/auto_ptr.cc * tr1/2_general_utilities/memory/shared_ptr/assign/auto_ptr_neg.cc * tr1/2_general_utilities/memory/shared_ptr/assign/ auto_ptr_rvalue_neg.cc * tr1/2_general_utilities/memory/shared_ptr/assign/dr541.cc * tr1/2_general_utilities/memory/shared_ptr/assign/shared_ptr.cc * tr1/2_general_utilities/memory/shared_ptr/assign/shared_ptr_neg.cc * tr1/2_general_utilities/memory/shared_ptr/casts * tr1/2_general_utilities/memory/shared_ptr/casts/1.cc * tr1/2_general_utilities/memory/shared_ptr/comparison * tr1/2_general_utilities/memory/shared_ptr/comparison/cmp.cc * tr1/2_general_utilities/memory/shared_ptr/cons * tr1/2_general_utilities/memory/shared_ptr/cons/auto_ptr.cc * tr1/2_general_utilities/memory/shared_ptr/cons/auto_ptr_neg.cc * tr1/2_general_utilities/memory/shared_ptr/cons/copy.cc * tr1/2_general_utilities/memory/shared_ptr/cons/default.cc * tr1/2_general_utilities/memory/shared_ptr/cons/pointer.cc * tr1/2_general_utilities/memory/shared_ptr/cons/weak_ptr.cc * tr1/2_general_utilities/memory/shared_ptr/cons/weak_ptr_expired.cc * tr1/2_general_utilities/memory/shared_ptr/dest * tr1/2_general_utilities/memory/shared_ptr/dest/dest.cc * tr1/2_general_utilities/memory/shared_ptr/misc * tr1/2_general_utilities/memory/shared_ptr/misc/24595.cc * tr1/2_general_utilities/memory/shared_ptr/misc/io.cc * tr1/2_general_utilities/memory/shared_ptr/misc/swap.cc * tr1/2_general_utilities/memory/shared_ptr/modifiers * tr1/2_general_utilities/memory/shared_ptr/modifiers/24805.cc * tr1/2_general_utilities/memory/shared_ptr/modifiers/reset.cc * tr1/2_general_utilities/memory/shared_ptr/modifiers/reset_neg.cc * tr1/2_general_utilities/memory/shared_ptr/modifiers/swap.cc * tr1/2_general_utilities/memory/shared_ptr/modifiers/swap_neg.cc * tr1/2_general_utilities/memory/shared_ptr/observers * tr1/2_general_utilities/memory/shared_ptr/observers/bool_conv.cc * tr1/2_general_utilities/memory/shared_ptr/observers/get.cc * tr1/2_general_utilities/memory/shared_ptr/observers/unique.cc * tr1/2_general_utilities/memory/shared_ptr/observers/use_count.cc * tr1/2_general_utilities/memory/shared_ptr/requirements * tr1/2_general_utilities/memory/shared_ptr/requirements/ explicit_instantiation * tr1/2_general_utilities/memory/shared_ptr/requirements/ explicit_instantiation/1.cc * tr1/2_general_utilities/memory/shared_ptr/thread * tr1/2_general_utilities/memory/shared_ptr/thread/ default_weaktoshared.cc * tr1/2_general_utilities/memory/shared_ptr/thread/ mutex_weaktoshared.cc * tr1/2_general_utilities/memory/weak_ptr * tr1/2_general_utilities/memory/weak_ptr/lock * tr1/2_general_utilities/memory/weak_ptr/lock/1.cc * tr1/2_general_utilities/memory/weak_ptr/requirements * tr1/2_general_utilities/memory/weak_ptr/requirements/ explicit_instantiation * tr1/2_general_utilities/memory/weak_ptr/requirements/ explicit_instantiation/1.cc ........ r122175 | paolo | 2007-02-20 13:22:35 -0800 (Tue, 20 Feb 2007) | 16 lines 2007-02-20 Paolo Carlini <pcarlini@suse.de> * include/tr1/functional: Split out hash bits to... * include/tr1/functional_hash.h: ...here. * include/Makefile.am: Add. * include/tr1/unordered_set: Include the latter instead. * include/tr1/unordered_map: Likewise. * include/tr1/random: Do not include the whole <algorithm>, stl_algobase.h is enough. * include/tr1/memory: Likewise. * include/Makefile.in: Regenerate. * include/tr1/utility (get(std::pair<>&), get(const std::pair<>&)): Mark inline. ........ r122176 | tkoenig | 2007-02-20 13:50:20 -0800 (Tue, 20 Feb 2007) | 12 lines 2007-02-20 Thomas Koenig <Thomas.Koenig@online.de> * match.c(gfc_match_iterator): Remove conflict between loop variable and pointer. 2007-02-20 Thomas Koenig <Thomas.Koenig@online.de> * gfortran.dg/do_pointer_1.f90: New test. ........ r122177 | steven | 2007-02-20 14:11:52 -0800 (Tue, 20 Feb 2007) | 4 lines * rtlanal.c (find_reg_equal_equiv_note): Do not find REG_EQ* notes on an insn with multiple sets, even if single_set returns non-NULL for that insn. ........ r122178 | steven | 2007-02-20 14:14:41 -0800 (Tue, 20 Feb 2007) | 5 lines * rtl.h (remove_reg_equal_equiv_notes): New prototype. * rtlanal.c (remove_reg_equal_equiv_notes): New function. * combine.c (adjust_for_new_dest): Use it. * postreload.c (reload_combine): Likewise. ........ r122179 | janis | 2007-02-20 15:11:43 -0800 (Tue, 20 Feb 2007) | 17 lines * doc/invoke.texi (RS/6000 and PowerPC Options): Add -mcmpb and -mdfp. * configure.ac (HAVE_GAS_CMPB): Check for assembler support of the cmpb instruction. (HAVE_GAS_DFP): Check for assembler support of decimal floating point instructions. * configure: Regenerate. * config.in: Regenerate. * config/rs6000/rs6000.opt (mcmpb, mdfp): New. * config/rs6000/rs6000.c (rs6000_override_options): Add CMPB and DFP masks to power6 and power6x and to POWERPC_MASKS. * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define _ARCH_PWR6. * config/rs6000/rs6000.h: Check assembler support for CMPB and DFP. * config/rs6000/sysv4.opt (mprototype): Use variable, not mask. * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Access PROTOTYPE as variable, not mask. ........ r122182 | echristo | 2007-02-20 16:02:48 -0800 (Tue, 20 Feb 2007) | 26 lines 2007-02-20 Eric Christopher <echristo@gmail.com> * config/frv/frv.c (frv_read_argument): Take a tree and int argument. Rewrite accordingly. (frv_read_iacc_argument): Ditto. (frv_expand_set_builtin): Take a call instead of arglist, update for above changes. (frv_expand_unop_builtin): Ditto. (frv_expand_binop_builtin): Ditto. (frv_expand_cut_builtin): Ditto. (frv_expand_binopimm_builtin): Ditto. (frv_expand_voidbinop_builtin): Ditto. (frv_expand_int_void2arg): Ditto. (frv_expand_prefetches): Ditto. (frv_expand_voidtriop_builtin): Ditto. (frv_expand_voidaccop_builtin): Ditto. (frv_expand_load_builtin): Ditto. (frv_expand_store_builtin): Ditto. (frv_expand_mdpackh_builtin): Ditto. (frv_expand_mclracc_builtin): Ditto. (frv_expand_mrdacc_builtin): Ditto. (frv_expand_mwtacc_builtin): Ditto. (frv_expand_builtin): Remove usage of CALL_EXPR_ARGS, update calls for above. ........ r122187 | gccadmin | 2007-02-20 16:17:51 -0800 (Tue, 20 Feb 2007) | 1 line Daily bump. ........ r122190 | jakub | 2007-02-21 00:36:18 -0800 (Wed, 21 Feb 2007) | 9 lines 2007-02-21 Bernhard Fischer <aldot@gcc.gnu.org> * parse.c (next_free): Gooble spaces after OpenMP sentinel. 2007-02-21 Jakub Jelinek <jakub@redhat.com> * gfortran.dg/gomp/omp_parse1.f90: New test. * gfortran.dg/gomp/omp_parse2.f: New test. ........ r122197 | gary | 2007-02-21 05:47:51 -0800 (Wed, 21 Feb 2007) | 6 lines 2007-02-21 Gary Benson <gbenson@redhat.com> * java/util/GregorianCalendar.java, (add): Don't set fields directly anymore. Use set() ........ r122198 | gary | 2007-02-21 05:49:01 -0800 (Wed, 21 Feb 2007) | 6 lines 2007-02-21 Gary Benson <gbenson@redhat.com> * java/util/GregorianCalendar.java: Removed. * sources.am, Makefile.in: Rebuilt. ........ r122199 | uweigand | 2007-02-21 07:05:01 -0800 (Wed, 21 Feb 2007) | 5 lines * reload1.c (eliminate_regs_in_insn): In the single_set special case, attempt to re-recognize the insn before falling back to having reload fix it up. ........ r122200 | nickc | 2007-02-21 07:40:29 -0800 (Wed, 21 Feb 2007) | 6 lines * common.opt (Warray-bounds): Add Warning attribute. (Wstrict-overflow, Wstrict-overflow=, Wcoverage-mismatch): Likewise. (fsized-zeroes): Add Optimization attribute. (fsplit-wide-types, ftree-scev-cprop): Likewise. * c.opt (Wc++0x-compat): Add Warning attribute. ........ r122201 | kgallowa | 2007-02-21 10:09:24 -0800 (Wed, 21 Feb 2007) | 10 lines 2007-02-21 Kyle Galloway <kgallowa@redhat.com> * jvmti.cc (_Jv_JVMTI_GetArgumentsSize): New function. * testsuite/libjava.jvmti/interp/getargssize.java: New test. * testsuite/libjava.jvmti/interp/getargssize.h: Ditto. * testsuite/libjava.jvmti/interp/getargssize.jar: Ditto. * testsuite/libjava.jvmti/interp/getargssize.out: Ditto. * testsuite/libjava.jvmti/interp/natgetargssize.cc: Ditto. ........ r122205 | pbrook | 2007-02-21 13:30:43 -0800 (Wed, 21 Feb 2007) | 6 lines 2007-02-21 Paul Brook <paul@codesourcery.com> * config/arm/arm.c (thumb2_final_prescan_insn): Don't incrememnt condexec_count when skipping USE and CLOBBER. ........ r122206 | ghazi | 2007-02-21 14:03:15 -0800 (Wed, 21 Feb 2007) | 4 lines * gcc.dg/torture/builtin-ldexp-1.c: Use -fno-finite-math-only on sh* targets. Call the correct CKSGN macro. ........ r122208 | ebotcazou | 2007-02-21 14:58:44 -0800 (Wed, 21 Feb 2007) | 7 lines * sem_ch3.adb (Create_Constrained_Components): for a subtype of an untagged derived type, add hidden components to keep discriminant layout consistent, when a given discriminant of the derived type constraints several discriminants of the parent type. ........ r122210 | tsmigiel | 2007-02-21 15:28:46 -0800 (Wed, 21 Feb 2007) | 97 lines 2007-02-21 Trevor Smigiel <trevor_smigiel@playstation.sony.com> Change the defaults of some parameters and options. * config/spu/spu-protos.h (spu_optimization_options): Declare. * config/spu/spu.c (spu_optimization_options): Add. (spu_override_options): Change params in spu_optimization_options. * config/spu/spu.h (OPTIMIZATION_OPTIONS): Define. Register 127 is only 16 byte aligned when used as a frame pointer. * config/spu/spu-protos.h (spu_init_expanders): Declare. * config/spu/spu.c (spu_expand_prologue): Set REGNO_POINTER_ALIGN for HARD_FRAME_POINTER_REGNUM. (spu_legitimate_address): Use regno_aligned_for_reload. (regno_aligned_for_load): HARD_FRAME_POINTER_REGNUM is only 16 byte aligned when frame_pointer_needed is true. (spu_init_expanders): New. Set alignment of HARD_FRAME_POINTER_REGNUM to 8 bits. * config/spu/spu.h (INIT_EXPANDERS): Define. Make sure shift and rotate instructions have valid immediate operands. * config/spu/predicates.md (spu_shift_operand): Remove. * config/spu/spu.c (print_operand): Add [efghEFGH] modifiers. * config/spu/constraints.md (W, O): Extend range. * config/spu/spu.md (umask, nmask): Define. (ashl<mode>3, ashldi3, ashlti3_imm, shlqbybi_ti, shlqbi_ti, shlqby_ti, lshr<mode>3, rotm_<mode>, lshr<mode>3_imm, rotqmbybi_<mode>, rotqmbi_<mode>, rotqmby_<mode>, ashr<mode>3, rotma_<mode>, rotl<mode>3, rotlti3, rotqbybi_ti, rotqby_ti, rotqbi_ti): Use spu_nonmem_operand instead of spu_shift_operands. Use new modifiers. (lshr<mode>3_reg): Fix rtl description. Make sure mulhisi immediate operands are valid. * config/spu/predicates.md (imm_K_operand): Add. * config/spu/spu.md (mulhisi3_imm, umulhisi3_imm): Use imm_K_operand. Generate constants using fsmbi and andi. * config/spu/spu.c (enum immediate_class): Add IC_FSMBI2. (print_operand, spu_split_immediate, classify_immediate, fsmbi_const_p): Handle IC_FSMBI2. Correctly handle a CONST_VECTOR containing symbols. * config/spu/spu.c (print_operand): Handle HIGH correctly. (spu_split_immediate): Split CONST_VECTORs with -mlarge-mem. (immediate_load_p): Allow symbols that use 2 instructions to create. (classify_immediate, spu_builtin_splats): Don't accept a CONST_VECTOR with symbols when flag_pic is set. (const_vector_immediate_p): New. (logical_immediate_p, iohl_immediate_p, arith_immediate_p): Don't accept a CONST_VECTOR with symbols. (spu_legitimate_constant_p): Use const_vector_immediate_p. Don't accept a CONST_VECTOR with symbols when flag_pic is set. Handle HIGH correctly. * config/spu/spu.md (high, low): Delete. (low_<mode>): Define. Remove INTRmode and INTR_REGNUM, which didn't work. * config/spu/spu.c (spu_conditional_register_usage): Remove reference of INTR_REGNUM. * config/spu/spu-builtins.md (spu_idisable, spu_ienable, set_intr, set_intr_pic, set_intr_cc, set_intr_cc_pic, set_intr_return, unnamed peephole2 pattern): Don't use INTR or 131. (movintrcc): Delete. * config/spu/spu.h (FIRST_PSEUDO_REGISTER, FIXED_REGISTERS, CALL_USED_REGISTERS, REGISTER_NAMES, INTR_REGNUM): Remove INTR_REGNUM. * config/spu/spu.md (UNSPEC_IDISABLE, UNSPEC_IENABLE): Remove. (UNSPEC_SET_INTR): Add. * config/spu/spu-modes.def (INTR): Remove. More accurate warnings about run-time relocations. * config/spu/spu.c (reloc_diagnostic): Test in_section. Correctly warn about immediate arguments to specific intrinsics. * config/spu/spu.c (spu_check_builtin_parm): Handle CONST_VECTORs. (spu_expand_builtin_1): Call spu_check_builtin_parm before checking the instruction predicate. Fix tree check errors with latest update. * config/spu/spu.c (expand_builtin_args, spu_expand_builtin_1): Use CALL_EXPR_ARG. (spu_expand_builtin): Use CALL_EXPR_FN. Add missing specific intrinsics. * config/spu/spu-builtins.def: Add si_bisled, si_bisledd and si_bislede. * config/spu/spu_internals.h: Ditto. Fix incorrect operand modifiers. * config/spu/spu-builtins.md (spu_mpy, spu_mpyu): Remove use of %H. * config/spu/spu.md (xor<mode>3): Change %S to %J. Optimize one case of zero_extend of a vec_select. * config/spu/spu.md (_vec_extractv8hi_ze): Add. Accept any immediate for hbr. * config/spu/spu.md (hbr): Change s constraints to i. ........ r122211 | mrs | 2007-02-21 15:58:22 -0800 (Wed, 21 Feb 2007) | 3 lines * configure.ac (powerpc*-*-darwin*): #include <sys/cdefs.h>. * configure: Regenerate. ........ r122215 | gccadmin | 2007-02-21 16:17:44 -0800 (Wed, 21 Feb 2007) | 1 line Daily bump. ........ r122217 | mmitchel | 2007-02-21 20:39:35 -0800 (Wed, 21 Feb 2007) | 8 lines * lib/wrapper.exp (${tool}_maybe_build_wrapper): Allow the caller to set options for compiling testglue. * lib/g++.exp (g++_init): Compile testglue with -fexceptions. * lib/obj-c++.exp (obj-c++_init): Likewise. * testsuite/lib/libstdc++.exp (libstdc++_init): Compile testglue with -fexceptions. ........ r122220 | dorit | 2007-02-22 00:16:18 -0800 (Thu, 22 Feb 2007) | 6 lines * tree-vectorizer.c (vect_is_simple_reduction): Check that the stmts in the reduction cycle have a single use in the loop. * tree-vectorizer.h (relevant): Add documentation. ........ r122222 | charlet | 2007-02-22 01:06:03 -0800 (Thu, 22 Feb 2007) | 2 lines Update test to be compatible with Ada 2005. ........ r122223 | paolo | 2007-02-22 01:52:37 -0800 (Thu, 22 Feb 2007) | 24 lines 2007-02-22 Paolo Carlini <pcarlini@suse.de> * include/tr1/unordered_map (class __unordered_map, class __unordered_multimap): New. (class unordered_map, class unordered_multimap): Forward to the latter. * include/tr1/unordered_set: Likewise for unordered_set and unordered_multiset. * testsuite/tr1/6_containers/headers/unordered_set/synopsis.cc: Remove xfail. * testsuite/tr1/6_containers/headers/unordered_map/synopsis.cc: Likewise. * testsuite/tr1/6_containers/unordered_multimap/requirements/ explicit_instantiation.cc: Adjust. * testsuite/tr1/6_containers/unordered_set/requirements/ explicit_instantiation.cc: Likewise. * testsuite/tr1/6_containers/unordered_map/requirements/ explicit_instantiation.cc: Likewise. * testsuite/tr1/6_containers/unordered_multiset/requirements/ explicit_instantiation.cc: Likewise. * testsuite/tr1/6_containers/unordered_map/24064.cc: Likewise. * testsuite/util/native_type/assoc/native_hash_set.hpp: Likewise. * testsuite/util/native_type/assoc/native_hash_map.hpp: Likewise. ........ r122224 | paolo | 2007-02-22 01:53:31 -0800 (Thu, 22 Feb 2007) | 24 lines 2007-02-22 Paolo Carlini <pcarlini@suse.de> * include/tr1/unordered_map (class __unordered_map, class __unordered_multimap): New. (class unordered_map, class unordered_multimap): Forward to the latter. * include/tr1/unordered_set: Likewise for unordered_set and unordered_multiset. * testsuite/tr1/6_containers/headers/unordered_set/synopsis.cc: Remove xfail. * testsuite/tr1/6_containers/headers/unordered_map/synopsis.cc: Likewise. * testsuite/tr1/6_containers/unordered_multimap/requirements/ explicit_instantiation.cc: Adjust. * testsuite/tr1/6_containers/unordered_set/requirements/ explicit_instantiation.cc: Likewise. * testsuite/tr1/6_containers/unordered_map/requirements/ explicit_instantiation.cc: Likewise. * testsuite/tr1/6_containers/unordered_multiset/requirements/ explicit_instantiation.cc: Likewise. * testsuite/tr1/6_containers/unordered_map/24064.cc: Likewise. * testsuite/util/native_type/assoc/native_hash_set.hpp: Likewise. * testsuite/util/native_type/assoc/native_hash_map.hpp: Likewise. ........ r122225 | irar | 2007-02-22 04:30:12 -0800 (Thu, 22 Feb 2007) | 5 lines * tree-vect-transform.c (vect_transform_loop): Remove strided scalar stores only after all the group is vectorized. ........ r122226 | irar | 2007-02-22 05:10:49 -0800 (Thu, 22 Feb 2007) | 2 lines * tree-data-ref.c (ptr_ptr_may_alias_p): Take alias sets into account. ........ r122227 | membar | 2007-02-22 06:13:34 -0800 (Thu, 22 Feb 2007) | 2 lines * include/win32-threads.h: Added #undef OUT. ........ r122228 | ian | 2007-02-22 06:55:09 -0800 (Thu, 22 Feb 2007) | 7 lines ./: * dwarf2out.c (concatn_mem_loc_descriptor): New static function. (mem_loc_descriptor): Call it. testsuite/: * g++.dg/debug/pr30898.C: New test. ........ r122229 | jakub | 2007-02-22 08:04:55 -0800 (Thu, 22 Feb 2007) | 48 lines libjava/ * java/util/VMTimeZone.java (getDefaultTimeZoneId): To read /etc/localtime, use ZoneInfo.readTZFile instead of VMTimeZone.readtzFile. Get better timezone name for /etc/localtime, either if it is a symlink or through /etc/sysconfig/clock. (readSysconfigClockFile): New static method. (readtzFile): Removed. * java/lang/System.java: Add gnu.java.util.zoneinfo.dir to comments. * posix.cc (_Jv_platform_initProperties): Set gnu.java.util.zoneinfo.dir. * sources.am (gnu_java_util_source_files): Add classpath/gnu/java/util/ZoneInfo.java. * Makefile.in: Regenerated. * java/util/VMTimeZone.h: Regenerated. * java/util/TimeZone.h: Regenerated. * gnu/java/util/ZoneInfo.h: Generated. libjava/classpath/ * java/util/Date.java (parse): Properly parse 09:01:02 as hours/minutes/seconds, not as hours/minutes/year. * java/util/SimpleTimeZone.java (SimpleTimeZone): Simplify {start,end}TimeMode constructor by calling shorter constructor, set {start,end}TimeMode fields after it returns. (setStartRule): Don't adjust startTime into WALL_TIME. Set startTimeMode to WALL_TIME. (endStartRule): Similarly. (getOffset): Handle properly millis + dstOffset overflowing into the next day. Adjust startTime resp. endTime based on startTimeMode resp. endTimeMode. * java/util/TimeZone.java (zoneinfo_dir, availableIDs, aliases0): New static fields. (timezones): Remove synchronized keyword. Set zoneinfo_dir. If non-null, set up aliases0 and don't put anything into timezones0. (defaultZone): Call getTimeZone instead of timezones().get. (getDefaultTimeZone): Fix parsing of EST5 or EST5EDT6. Use getTimeZoneInternal instead of timezones().get. (parseTime): Parse correctly hour:minute. (getTimeZoneInternal): New private method. (getTimeZone): Do the custom ID checking first, canonicalize ID for custom IDs as required by documentation. Call getTimeZoneInternal to handle the rest. (getAvailableIDs(int)): Add locking. Handle zoneinfo_dir != null. (getAvailableIDs(File,String,ArrayList)): New private method. (getAvailableIDs()): Add locking. Handle zoneinfo_dir != null. * gnu/java/util/ZoneInfo.java: New file. ........ r122230 | matz | 2007-02-22 09:03:48 -0800 (Thu, 22 Feb 2007) | 13 lines * dwarf2out.c (add_AT_string): Call ggc_strdup once per string. (type_tag): Use lang_hooks.dwarf_name instead of DECL_NAME. * cp-tree.h (TFF_NO_OUTER_SCOPE): New formatting flag. * error.c (dump_aggr_type, dump_simple_decl, dump_decl, dump_function_decl): Guard emitting outer scopes by new flag. * cp-lang.c (cxx_dwarf_name): New function. (LANG_HOOKS_DWARF_NAME): Define to cxx_dwarf_name. * pt.c (classtype_mangled_name, mangle_class_name_for_template): Remove functions. (push_template_decl_real, lookup_template_class): Remove calls to above functions. ........ r122235 | mmitchel | 2007-02-22 11:34:29 -0800 (Thu, 22 Feb 2007) | 2 lines * g++.dg/opt/switch4.C: Pass -fshort-enums -w. ........ r122237 | simartin | 2007-02-22 12:57:12 -0800 (Thu, 22 Feb 2007) | 17 lines 2007-02-22 Simon Martin <simartin@users.sourceforge.net> * testsuite/27_io/basic_ios/cons/char/3.cc: Fixed type mismatches in explicit instantiations. * testsuite/27_io/basic_istream/extractors_other/pod/3983-3.cc: Likewise. * testsuite/27_io/basic_istream/extractors_arithmetic/pod/3983-1.cc: Likewise. * testsuite/27_io/basic_istream/extractors_character/pod/3983-2.cc: Likewise. * testsuite/27_io/basic_istream/sentry/pod/1.cc: Likewise. * testsuite/27_io/basic_ostream/sentry/pod/1.cc: Likewise. * testsuite/21_strings/basic_string/inserters_extractors/pod/10081-in.cc: Likewise. * testsuite/21_strings/basic_string/inserters_extractors/pod/10081-out.cc: Likewise. * testsuite/21_strings/basic_string/capacity/1.cc: Likewise. ........ r122238 | brooks | 2007-02-22 13:03:05 -0800 (Thu, 22 Feb 2007) | 5 lines * gfortran.texi (Old-style kind specifications): Document special handling of old-style kind specifiers for COMPLEX. * decl.c (gfc_match_old_kind_spec): Documented kind/bytesize assumptions in comment. ........ r122240 | mmitchel | 2007-02-22 15:49:15 -0800 (Thu, 22 Feb 2007) | 6 lines * gcc.c (getenv_spec_function): New function. (static_spec_functions): Add it. * config/vxworks.h (VXWORKS_TARGET_DIR): Remove. (VXWORKS_ADDITIONAL_CPP_SPEC): Use getenv to find the VxWorks header files. ........ r122244 | gccadmin | 2007-02-22 16:17:29 -0800 (Thu, 22 Feb 2007) | 1 line Daily bump. ........ r122248 | mmitchel | 2007-02-22 19:00:26 -0800 (Thu, 22 Feb 2007) | 2 lines * doc/invoke.texi (Spec Files): Document getenv spec function. ........ r122249 | ghazi | 2007-02-22 20:49:21 -0800 (Thu, 22 Feb 2007) | 7 lines * builtins.c (fold_builtin_frexp): New. (fold_builtin_2): Use it. testsuite: * gcc.dg/torture/builtin-frexp-1.c: New test. ........ r122250 | jvdelisle | 2007-02-22 21:43:16 -0800 (Thu, 22 Feb 2007) | 6 lines 2007-02-22 Jerry DeLisle <jvdelisle@gcc.gnu.org> * io/write.c (output_float): Add condition of format F only for special case rounding with zero precision. ........ r122251 | jvdelisle | 2007-02-22 22:29:03 -0800 (Thu, 22 Feb 2007) | 5 lines 2007-02-22 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/fmt_zero_precision.f90: Update test. ........ r122252 | jvdelisle | 2007-02-22 23:14:04 -0800 (Thu, 22 Feb 2007) | 7 lines 2007-02-22 Jerry DeLisle <jvdelisle@gcc.gnu.org> * options.c (set_default_std_flags): New function to consolidate setting the flags. (gfc_init_options): Use new function. (gfc_handle_option): Use new function. ........ r122253 | bonzini | 2007-02-22 23:45:34 -0800 (Thu, 22 Feb 2007) | 5 lines 2007-02-22 Paolo Bonzini <bonzini@gnu.org> * fwprop.c (propagate_rtx_1): Accept a VOIDmode replacement address. ........ r122254 | hjl | 2007-02-23 01:34:34 -0800 (Fri, 23 Feb 2007) | 8 lines 2007-02-23 H.J. Lu <hongjiu.lu@intel.com> * config/i386/i386.c (bdesc_1arg): Initialize IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP with "__builtin_ia32_movshdup" and "__builtin_ia32_movsldup". (ix86_init_mmx_sse_builtins): Remove IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP. ........ r122255 | rguenth | 2007-02-23 03:08:39 -0800 (Fri, 23 Feb 2007) | 7 lines 2007-02-23 Richard Guenther <rguenther@suse.de> * class.c (note_name_declared_in_class): Make declaration changes meaning a pedwarn. * g++.dg/warn/changes-meaning.C: New testcase. ........ r122257 | ghazi | 2007-02-23 06:27:50 -0800 (Fri, 23 Feb 2007) | 13 lines * builtins.c (fold_builtin_logb, fold_builtin_significand): New. (fold_builtin_1): Use them. * fold-const.c (tree_expr_nonnegative_warnv_p): Handle BUILT_IN_SIGNIFICAND. testsuite: * gcc.dg/torture/builtin-logb-1.c: New test. * gcc.dg/torture/builtin-math-2.c: Test logb/ilogb. * gcc.dg/torture/builtin-nonneg-1.c: Test significand. * gcc.dg/torture/builtin-frexp-1.c: Use -fno-finite-math-only on sh* targets. ........ r122258 | gary | 2007-02-23 07:13:18 -0800 (Fri, 23 Feb 2007) | 21 lines 2007-02-22 Jakub Jelinek <jakub@redhat.com> * java/util/VMTimeZone.java (getDefaultTimeZoneId): To read /etc/localtime, use ZoneInfo.readTZFile instead of VMTimeZone.readtzFile. Get better timezone name for /etc/localtime, either if it is a symlink or through /etc/sysconfig/clock. (readSysconfigClockFile): New static method. (readtzFile): Removed. * java/lang/System.java: Add gnu.java.util.zoneinfo.dir to comments. * posix.cc (_Jv_platform_initProperties): Set gnu.java.util.zoneinfo.dir. * sources.am (gnu_java_util_source_files): Add classpath/gnu/java/util/ZoneInfo.java. * Makefile.in: Regenerated. * java/util/VMTimeZone.h: Regenerated. * java/util/TimeZone.h: Regenerated. * gnu/java/util/ZoneInfo.h: Generated. ........ r122259 | gary | 2007-02-23 07:15:58 -0800 (Fri, 23 Feb 2007) | 6 lines 2007-02-23 Gary Benson <gbenson@redhat.com> * java/lang/VMCompiler.java (compileClass): Don't lose zeros from within the digest. ........ r122260 | gary | 2007-02-23 07:34:19 -0800 (Fri, 23 Feb 2007) | 6 lines 2007-02-23 Gary Benson <gbenson@redhat.com> * java/lang/VMCompiler.java (compileClass): Don't lose zeros from within the digest. ........ r122261 | gary | 2007-02-23 07:35:17 -0800 (Fri, 23 Feb 2007) | 5 lines 2007-02-23 Gary Benson <gbenson@redhat.com> * gnu/gcj/tools/gcj_dbtool/Main.java: Updated copyright year. ........ r122262 | bernds | 2007-02-23 07:52:27 -0800 (Fri, 23 Feb 2007) | 4 lines * config/bfin/bfin.md (doloop_end): Fail for loops that can iterate 2^32-1 or more times unless flag_unsafe_loop_optimizations. ........ r122263 | burnus | 2007-02-23 08:35:25 -0800 (Fri, 23 Feb 2007) | 15 lines 2007-02-23 Paul Thomas <pault@gcc.gnu.org> * resolve.c (has_default_initializer): New function. (resolve_fl_variable): Call has_default_initializer to determine if the derived type has a default initializer to its ultimate components. 2007-02-23 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/alloc_comp_basics_4.f90: Add component with an allocatable component. ........ r122264 | bernds | 2007-02-23 10:03:56 -0800 (Fri, 23 Feb 2007) | 3 lines * loop-iv.c (determine_max_iter): Moved in front of its sole user. ........ r122268 | uros | 2007-02-23 10:19:07 -0800 (Fri, 23 Feb 2007) | 6 lines * config/i386/i386.md (*movdi_1_rex64, zero_extendsidi2_32, zero_extendsidi2_rex64): Penalize MMX register<->memory moves. (*movsf_1): Penalize MMX moves. ........ r122272 | mmitchel | 2007-02-23 14:08:01 -0800 (Fri, 23 Feb 2007) | 5 lines * lib/target-supports.exp (check_effective_target_unwrapped): New. * testsuite/26_numerics/headers/cmath/c99_classification_macros_c.cc: XFAIL for Newlib targets. ........ r122273 | mmitchel | 2007-02-23 14:12:49 -0800 (Fri, 23 Feb 2007) | 5 lines * lib/target-supports.exp (check_effective_target_unwrapped): New. * testsuite/27_io/ios_base/sync_with_stdio/1.cc: XFAIL for wrapped targets. ........ r122274 | manu | 2007-02-23 14:28:37 -0800 (Fri, 23 Feb 2007) | 7 lines 2007-02-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * gcc.test-framework/README: Correct command. * gcc.test-framework/dg-outexistsnot-exp-P.c: Replace -W with -Wunused-value. * gcc.test-framework/dg-outexists-exp-F.c: Likewise. ........ r122275 | dj | 2007-02-23 15:16:47 -0800 (Fri, 23 Feb 2007) | 3 lines * config/i386/i386.c (ix86_data_alignment): Don't specify an alignment bigger than the object file can handle. ........ r122276 | paolo | 2007-02-23 15:34:18 -0800 (Fri, 23 Feb 2007) | 11 lines 2007-02-23 Paolo Carlini <pcarlini@suse.de> * include/tr1/hashtable (_Hashtable<>::erase(const key_type&)): Take care of &_M_extract((*__slot)->_M_v) == &__k. * testsuite/tr1/6_containers/unordered_map/erase/1.cc: New. * testsuite/tr1/6_containers/unordered_multimap/erase/1.cc: Likewise. * testsuite/tr1/6_containers/unordered_multiset/erase/1.cc: Likewise. * testsuite/tr1/6_containers/unordered_set/erase/1.cc: Likewise. ........ r122277 | sje | 2007-02-23 16:11:39 -0800 (Fri, 23 Feb 2007) | 4 lines * varpool.c (varpool_assemble_pending_decls): Set varpool_last_needed_node to null. ........ r122281 | gccadmin | 2007-02-23 16:17:24 -0800 (Fri, 23 Feb 2007) | 1 line Daily bump. ........ r122283 | mrs | 2007-02-23 16:30:30 -0800 (Fri, 23 Feb 2007) | 3 lines * tlink.c (scan_linker_output): Parse linker messages from darwin9's linker better. ........ r122284 | mrs | 2007-02-23 16:53:39 -0800 (Fri, 23 Feb 2007) | 2 lines Fix thinko in last fix. ........ r122285 | dj | 2007-02-23 17:28:22 -0800 (Fri, 23 Feb 2007) | 2 lines * doc/tm.h (BIGGEST_ALIGNMENT): Clarify the purpose of this macro. ........ r122286 | mrs | 2007-02-23 22:22:12 -0800 (Fri, 23 Feb 2007) | 3 lines * tlink.c (scan_linker_output): Parse linker messages from darwin9's linker better. ........ r122288 | bernds | 2007-02-24 05:40:54 -0800 (Sat, 24 Feb 2007) | 6 lines * loop-iv.c (implies_p): Detect additional cases where A implies B. (determine_max_iter): Take additional LOOP arg; all callers changed. Lose broken logic dealing with PLUS. Try to limit the upper bound by one using simplifications. ........ r122290 | bonzini | 2007-02-24 08:07:41 -0800 (Sat, 24 Feb 2007) | 5 lines 2007-02-23 Paolo Bonzini <bonzini@gnu.org> * gcc.dg/pr30904.c: New test. ........ r122291 | bernds | 2007-02-24 08:30:51 -0800 (Sat, 24 Feb 2007) | 4 lines * loop-iv.c (simplify_using_initial_values): Return if the expression becomes invalid due to altered regs. ........ r122292 | ghazi | 2007-02-24 10:11:33 -0800 (Sat, 24 Feb 2007) | 7 lines * builtins.c (fold_builtin_modf): New. (fold_builtin_2): Use it. testsuite: * gcc.dg/torture/builtin-modf-1.c: New test. ........ r122293 | hubicka | 2007-02-24 11:02:40 -0800 (Sat, 24 Feb 2007) | 3 lines * cgraphunit.c (decide_is_function_needed): Honor -fkeep-inline-functions. ........ r122294 | danglin | 2007-02-24 11:16:45 -0800 (Sat, 24 Feb 2007) | 3 lines * pa.md (muldi3): Force subregs to registers in 64-bit expander. ........ r122295 | rguenth | 2007-02-24 11:55:47 -0800 (Sat, 24 Feb 2007) | 8 lines 2007-02-24 Richard Guenther <rguenther@suse.de> * fold-const.c (fold_binary): Fold x +- CST op x for EQ_EXPR and NE_EXPR. * gcc.dg/pr30951.c: New testcase. ........ r122297 | mrs | 2007-02-24 14:27:26 -0800 (Sat, 24 Feb 2007) | 3 lines * config/i386/i386.c (output_pic_addr_const): Stubify optimized symbols. ........ r122301 | uros | 2007-02-24 15:29:30 -0800 (Sat, 24 Feb 2007) | 6 lines * config/i386/i386.md (expand_movmem_epilogue): Fix typo, mask count argument with 0x10, not with 0x16. (expand_setmem_epilogue): Ditto. ........ r122305 | gccadmin | 2007-02-24 16:17:36 -0800 (Sat, 24 Feb 2007) | 1 line Daily bump. ........ r122307 | jvdelisle | 2007-02-24 18:27:17 -0800 (Sat, 24 Feb 2007) | 5 lines 2007-02-24 Jerry DeLisle <jvdelisle@gcc.gnu.org> * io/listread.c (namelist_read): Eat comment line. ........ r122308 | jvdelisle | 2007-02-24 18:30:14 -0800 (Sat, 24 Feb 2007) | 5 lines 2007-02-24 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/namelist_26.f90: New test. ........ r122311 | nickc | 2007-02-24 23:47:49 -0800 (Sat, 24 Feb 2007) | 3 lines * config/frv/frv.h (ASM_OUTPUT_CASE_LABEL): Delete. (JUMP_TABLES_IN_TEXT_SECTION): Define. ........ r122312 | paolo | 2007-02-25 04:26:16 -0800 (Sun, 25 Feb 2007) | 6 lines 2007-02-25 Paolo Carlini <pcarlini@suse.de> * testsuite/19_diagnostics/headers/cerrno/macros.cc: Include the right header. * testsuite/18_support/headers/cstdlib/macros.cc: Likewise. ........ r122313 | hubicka | 2007-02-25 09:37:37 -0800 (Sun, 25 Feb 2007) | 7 lines * i386.c (counter_mode): New function. (expand_set_or_movmem_via_loop): Use it. (expand_movmem_epilogue): Likewise; fix pasto. (ix86_expand_movmem): Do emit guard even for constant counts. (ix86_expand_setmem): Likewise. ........ r122314 | hubicka | 2007-02-25 10:11:20 -0800 (Sun, 25 Feb 2007) | 3 lines * tree-inline.c (copy_bb): Produce exact copy of EH info when copying for inlining. ........ r122315 | mmitchel | 2007-02-25 10:47:05 -0800 (Sun, 25 Feb 2007) | 98 lines * doc/extend.texi: Document optional priority argument to constructors and destructors. * tree.c (init_priority_for_decl): Adjust GTY markers. (init_ttree): Use priority-info hash functions for init_priority_for_decl. (tree_map_eq): Rename to ... (tree_map_base_eq): ... this. (tree_map_marked_p): Rename to ... (tree_map_base_marked_p): ... this. (tree_map_base_hash): New function. (decl_init_priority_lookup): Rework. (decl_fini_priority_lookup): New function. (decl_priority_info): New function. (decl_init_priority_insert): Use it. (decl_fini_priority_insert): Likewise. (decl_restrict_base_lookup): Adjust for refactoring of tree_map hierarchy. (decl_restrict_base_insert): Likewise. (decl_debug_expr_insert): Likewise. (decl_value_expr_lookup): Likewise. (decl_value_expr_insert): Likewise. * tree.h (priority_type): New type. (decl_init_priority_lookup): Use priority_type. (decl_fini_priority_lookup): New function. (decl_init_priority_insert): Use priority_type. (decl_fini_priority_insert): New function. (DECL_HAS_INIT_PRIORITY): Tweak comments. (DECL_INIT_PRIORITY): Likewise. (SET_DECL_INIT_PRIORITY): Add comment. (DECL_FINI_PRIORITY): New macro. (SET_DECL_FINI_PRIORITY): Likewise. (DEFAULT_INIT_PRIORITY): Document. (MAX_INIT_PRIORITY): Likewise. (MAX_RESERVED_INIT_PRIORITY): Likewise. (tree_map_base): New type. (tree_map_base_eq): New function. (tree_map_base_hash): Likewise. (tree_map_base_marked_p): Likewise. (tree_map): Inherit from tree_map_base. (tree_map_eq): Make it a macro. (tree_map_marked_p): Likewise. (tree_int_map): Inherit from tree_map_base. (tree_int_map_eq): Make it a macro. (tree_int_map_hash): Likewise. (tree_int_map_marked_p): Likewise. (tree_priority_map): New type. (tree_priority_map_eq): New macro. (tree_priority_map_hash): Likewise. (tree_priority_map_marked_p): Likewise. * varasm.c (emults_decl): Adjust for refactoring of tree_map hierarchy. (emutls_common_1): Likewise. * lambda-code.c (replace_uses_equiv_to_x_with_y): Likewise. * tree-ssa-structalias.c (heapvar_lookup): Adjust for refactoring of tree_map hierarchy. * tree-cfg.c (move_stmt_r): Likewise. (new_label_mapper): Likewise. * c-tree.h (c_expand_body): Move to ... * c-common.h (c_expand_body): ... here. * c-decl.c (c_expand_body): Move to ... * c-common.c (c_expand_body): ... here. (c_common_attribute_table): Allow 1 argument for the constructor and destructor attributes. (get_priority): New function. (handle_constructor_attribute): Set DECL_INIT_PRIORITY. (handle_destructor_attribute): Set DECL_FINI_PRIORITY. * cp-tree.h (static_ctors): Remove. * cp-tree.h (static_dtors): Likewise. * cp-objcp-common.c (decl_shadowed_for_var_lookup): Adjust for refactoring of tree_map hierarchy. (decl_shadowed_for_var_insert): Likewise. * semantics.c (expand_body): Use c_expand_body. (expand_or_defer_fn): Don't update static_ctors or static_dtors. * decl2.c (static_ctors): Remove. (static_dtors): Likewise. (generate_ctor_or_dtor_function): Pass NULL_TREE to objc_generate_static_init_call. Do not call static_[cd]tors. (generate_ctor_and_dtor_functions_for_priority): Do not check for static_[cd]tors. (cp_write_global_declarations): Likewise. * decl.c (annotate_value): Adjust for refactoring of tree_map hierarchy. * gcc.dg/initpri1.c: New test. * gcc.dg/initpri2.c: Likewise. * g++.dg/special/initpri1.C: New test. * g++.dg/special/initpri2.C: Likewise. * g++.dg/special/conpr-1.C: Use init_priority effective target. * g++.dg/special/conpr-2.C: Likewise. * g++.dg/special/conpr-3.C: Likewise. * g++.dg/special/conpr-4.C: Likewise. * g++.dg/special/initp1.C: Likewise. * g++.dg/special/ecos.exp: Remove code to detect availability of constructor priorities. * lib/target-support.exp (target_init_priority): New function. ........ r122316 | rakdver | 2007-02-25 11:49:22 -0800 (Sun, 25 Feb 2007) | 22 lines * tree-ssa-loop-niter.c (compute_estimated_nb_iterations): Fix off-by-one error. (array_at_struct_end_p): New function. (idx_infer_loop_bounds): Use it. (estimate_numbers_of_iterations_loop): Export. * predict.c (predict_loops): Use estimated_loop_iterations_int. Do not use PRED_LOOP_EXIT on exits predicted by # of iterations. (tree_estimate_probability): Call record_loop_exits. * tree-data-ref.c (get_number_of_iters_for_loop): Replaced by ... (estimated_loop_iterations, estimated_loop_iterations_int, estimated_loop_iterations_tree): New functions. (analyze_siv_subscript_cst_affine, compute_overlap_steps_for_affine_1_2, analyze_subscript_affine_affine): Use estimated_loop_iterations_int. (analyze_miv_subscript): Use estimated_loop_iterations_tree. * predict.def (PRED_LOOP_ITERATIONS): Update comment. (PRED_LOOP_ITERATIONS_GUESSED): New. * cfgloop.c (record_loop_exits): Do nothing if there are no loops. * cfgloop.h (estimate_numbers_of_iterations_loop, estimated_loop_iterations_int): Declare. ........ r122317 | mmitchel | 2007-02-25 12:08:59 -0800 (Sun, 25 Feb 2007) | 3 lines * decl.c (annotate_value): Adjust for refactoring of tree_map hierarchy. ........ r122318 | uweigand | 2007-02-25 12:56:46 -0800 (Sun, 25 Feb 2007) | 11 lines * reload.c (find_reloads_address_1): Handle PLUS expressions resulting from register elimination as PRE_MODIFY / POST_MODIFY increments. Do not attempt to handle MEM inside auto-inc expressions. * reload1.c (eliminate_regs_1): Do not attempt to handle elimination of a register modified by an auto-inc expression. However, do handle elimination of a register used as PRE_MODIFY / POST_MODIFY increment. (elimination_effects): Prohibit elimination of a register modified by an auto-inc expression. Disable register elimination rules whose target register is modified by an auto-inc expression with variable increment. ........ r122321 | gerald | 2007-02-25 13:14:02 -0800 (Sun, 25 Feb 2007) | 2 lines * update_version_svn (IGNORE_BRANCHES): Add 4_0-branch. ........ r122323 | uros | 2007-02-25 15:18:45 -0800 (Sun, 25 Feb 2007) | 6 lines * tree-vect-transform.c (vectorizable_call): Fix off-by-one error: use &dt[nargs-1] instead of &dt[nargs] in the call to vect_is_simple_use(). ........ r122326 | gccadmin | 2007-02-25 16:17:08 -0800 (Sun, 25 Feb 2007) | 1 line Daily bump. ........ r122329 | paolo | 2007-02-26 01:36:39 -0800 (Mon, 26 Feb 2007) | 36 lines 2007-02-26 Paolo Carlini <pcarlini@suse.de> * include/std/bitset: Do not include <istream> and <ostream>, <ios> is enough. * include/std/iomanip: Do not include the whole <istream>, <ios> is enough; do not include <functional>; reformat. * include/std/functional: Do not include <cstddef>. * include/std/list: Do not include <bits/stl_uninitialized.h>. * include/std/numeric: Do not include the whole <iterator> and <bits/stl_function.h>. * include/std/valarray: Do not include <numeric>. * include/bits/stl_numeric.h: Include <bits/concept_check.h>. * src/iostream-inst.cc: Include <istream>. * include/ext/functional: Include <cstddef>. * testsuite/util/testsuite_hooks.h: Do not include <locale>, <ctime> is enough; qualify tm. * testsuite/util/testsuite_hooks.cc: Qualify tm. 2007-02-26 Paolo Carlini <pcarlini@suse.de> * include/bits/locale_facets.h (class ctype_byname<char>, class ctype_byname<wchar_t>): Declare. * src/ctype.cc (ctype_byname<wchar_t>::ctype_byname(const char*, size_t), ctype_byname<wchar_t>::~ctype_byname): Define. * config/locale/generic/ctype_members.cc (ctype_byname<char>:: ctype_byname(const char*, size_t), ctype_byname<char>::~ctype_byname): Likewise. * config/locale/gnu/ctype_members.cc (ctype_byname<char>:: ctype_byname(const char*, size_t), ctype_byname<char>::~ctype_byname): Likewise. * config/locale/darwin/ctype_members.cc (ctype_byname<char>:: ctype_byname(const char*, size_t), ctype_byname<char>::~ctype_byname): Likewise. * testsuite/22_locale/headers/locale/synopsis.cc: Remove xfail. ........ r122330 | jakub | 2007-02-26 03:01:55 -0800 (Mon, 26 Feb 2007) | 3 lines * java/util/TimeZone.java (getDefaultDisplayName): Don't check if TimeZone is instanceof SimpleTimeZone. ........ r122332 | ebotcazou | 2007-02-26 06:07:12 -0800 (Mon, 26 Feb 2007) | 1 line Fix formatting nits. ........ r122335 | mmitchel | 2007-02-26 07:53:51 -0800 (Mon, 26 Feb 2007) | 25 lines * output.h (assemble_addr_to_section): Declare. (get_cdtor_priority_section): Likewise. * varasm.c (assemble_addr_to_section): New function. (get_cdtor_priority_section): Likewise. (default_named_section_asm_out_destructor): Use them. (destor_dtor_section_asm_out_destructor): Likewise. (default_named_section_asm_out_constructor): Likewise. (default_ctor_section_asm_out_constructor): Likewise. * config.gcc (*-*-vxworks*): Include vxworks.o. * config/t-vxworks (vxworks.o): New target. * config/vxworks.h (ALWAYS_NUMBER_CTORS_SECTIONS): Remove. (TARGET_ASM_CONSTRUCTOR): Define. (TARGET_ASM_DESTRUCTOR): Likewise. (vxworks_asm_out_constructor): Declare. (vxworks_asm_out_destructor): Likewise. * c-common.c (get_priority): Check that we have not just an INTEGER_CST, but an integer constant with integeral type. * gcc.dg/vxworks/vxworks.exp: New file. * gcc.dg/vxworks/initpri1.c: Likewise. * gcc.dg/vxworks/initpri2.c: Likewise. * gcc.dg/initpri2.c: Add more tests. * g++.dg/special/initpri2.C: Likewise. ........ r122340 | gerald | 2007-02-26 12:40:13 -0800 (Mon, 26 Feb 2007) | 2 lines * test_installed: Adjust to the move from g77 to gfortran. ........ r122341 | mmitchel | 2007-02-26 13:14:24 -0800 (Mon, 26 Feb 2007) | 18 lines * c-decl.c (static_ctors): Move to c-common.c. (static_dtors): Likewise. (finish_function): Use c_record_cdtor_fn. (build_cdtor): Move to c-common.c. (c_write_global_declarations): Use c_build_cdtor_fns. * c-common.h (static_ctors): Declare. (static_dtors): Likewise. (c_record_cdtor_fn): Likewise. (c_build_cdtor_fns): Likewise. * c-common.c (static_ctors): New variable. (static_dtors): Likewise. (c_record_cdtor_fn): New function. (build_cdtor): Move from c-decl.c (c_build_cdtor_fns): New function. * semantics.c (expand_or_defer_fn): Call c_record_cdtor_fn. * decl2.c (cp_write_gloabl_declarations): Call c_build_cdtor_fns. ........ r122342 | tkoenig | 2007-02-26 13:16:00 -0800 (Mon, 26 Feb 2007) | 14 lines 2007-02-26 Thomas Koenig <Thomas.Koenig@online.de> Paul Thomas <pault@gcc.gnu.org> * trans-intrinsic.c (gfc_conv_intrinsic_size): If dim is an optional argument, check for its presence and call size0 or size1, respectively. 2007-02-26 Thomas Koenig <Thomas.Koenig@online.de> * size_optional_dim_1.f90: New test. ........ r122343 | dj | 2007-02-26 13:31:42 -0800 (Mon, 26 Feb 2007) | 4 lines * configure.ac: add djgpp-specific results, so we don't have to link during a cross compilation. * configure: Regenerated. ........ r122344 | dj | 2007-02-26 13:37:05 -0800 (Mon, 26 Feb 2007) | 4 lines * crossconfig.m4 (djgpp): Pre-detect djgpp-specific results, to avoid needing to link during cross compiling. * configure: Regenerated. ........ r122345 | ghazi | 2007-02-26 14:19:32 -0800 (Mon, 26 Feb 2007) | 4 lines * gcc.dg/torture/builtin-modf-1.c: Use -fno-finite-math-only on sh* targets. ........ r122346 | bernds | 2007-02-26 15:42:43 -0800 (Mon, 26 Feb 2007) | 4 lines * loop-iv.c (simplify_using_initial_values): Fix oversight in previous change; avoid a memory leak when returning early. ........ r122347 | hubicka | 2007-02-26 16:07:03 -0800 (Mon, 26 Feb 2007) | 6 lines * predict.def: Set outcomes according to more recent results. (PRED_LOOP_CONDITION, PRED_LOOP_PRECONDITIONING, PRED_LOOP_HEADER): Remove dead predictors. * predict.c (return_prediction): Fix pasto. ........ r122348 | geoffk | 2007-02-26 16:10:22 -0800 (Mon, 26 Feb 2007) | 3 lines * g++.dg/ext/visibility/class1.C: Port to Darwin. * g++.dg/ext/visibility/noPLT.C: Likewise. ........ r122352 | gccadmin | 2007-02-26 16:17:12 -0800 (Mon, 26 Feb 2007) | 1 line Daily bump. ........ r122355 | geoffk | 2007-02-26 16:32:23 -0800 (Mon, 26 Feb 2007) | 3 lines * gcc.target/powerpc/stabs-attrib-vect-darwin.c: Allow for more builtin types. ........ git-svn-id: https://gcc.gnu.org/svn/gcc/branches/fixed-point@122381 138bc75d-0d04-0410-961f-82ee72b054a4
2007-02-27Merged revisions 121636-121984 via svnmerge from Chao-ying Fu
svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk ........ r121636 | korbb | 2007-02-05 17:25:59 -0800 (Mon, 05 Feb 2007) | 1 line check in required changes for base/sys/sysmacros.h ........ r121638 | aoliva | 2007-02-05 17:35:10 -0800 (Mon, 05 Feb 2007) | 8 lines gcc/ChangeLog: * dwarf2out.c (modified_type_die): Follow DECL_ORIGINAL_TYPE even if cv-qualification is the same. gcc/testsuite/ChangeLog: * gcc.dg/pr30189.c: New test. ........ r121639 | ghazi | 2007-02-05 18:50:39 -0800 (Mon, 05 Feb 2007) | 7 lines * fold-const.c (negate_expr_p): Handle CONJ_EXPR. (fold_negate_expr): Likewise. testsuite: * gcc.dg/builtins-20.c: Add more cases. ........ r121640 | irar | 2007-02-06 00:41:01 -0800 (Tue, 06 Feb 2007) | 5 lines * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Check that vectype is not NULL. (vect_pattern_recog_1): Likewise. ........ r121641 | aph | 2007-02-06 01:44:53 -0800 (Tue, 06 Feb 2007) | 9 lines 2007-02-05 Andrew Haley <aph@redhat.com> * tools/gnu/classpath/tools/javah/JniIncludePrinter.java: (printClass): Replace '/' in filenames with '_'. * tools/gnu/classpath/tools/javah/JniStubPrinter.java (printClass): Likewise. ........ r121643 | dorit | 2007-02-06 02:08:51 -0800 (Tue, 06 Feb 2007) | 27 lines 2007-02-06 Dorit Nuzman <dorit@il.ibm.com> Victor Kaplansky <victork@il.ibm.com> * tree-vectorizer.c (vect_is_simple_use): Support induction. (vect_is_simple_reduction): Support reduction with induction as one of the operands. (vect_is_simple_iv_evolution): Fix formatting. * tree-vect-analyze.c (vect_mark_stmts_to_be_vectorized): Fix formatting. Don't mark induction phis for vectorization. (vect_analyze_scalar_cycles): Analyze all inductions, then reductions. * tree-vect-transform.c (get_initial_def_for_induction): New function. (vect_get_vec_def_for_operand): Support induction. (vect_get_vec_def_for_stmt_copy): Fix formatting and add check for induction case. (vectorizable_reduction): Support reduction with induction as one of the operands. (vectorizable_type_demotion): Use def-type of stmt argument rather than dummy def-type. * tree-ssa-loop.c (gate_scev_const_prop): Return the value of flag_tree_scev_cprop. * common.opt (tree-scev-cprop): New flag. * tree-vect-transform.c (vect_create_destination_var): Use 'kind' in call to vect_get_new_vect_var. ........ r121644 | rguenth | 2007-02-06 04:38:32 -0800 (Tue, 06 Feb 2007) | 5 lines 2007-02-06 Richard Guenther <rguenther@suse.de> * gcc.dg/torture/pr27302-2.c: New testcase. ........ r121646 | rsandifo | 2007-02-06 05:14:18 -0800 (Tue, 06 Feb 2007) | 3 lines contrib/ * texi2pod.pl: Handle @multitable. ........ r121647 | bonzini | 2007-02-06 05:55:01 -0800 (Tue, 06 Feb 2007) | 23 lines gcc: 2007-02-06 Paolo Bonzini <bonzini@gnu.org> * tree.c (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p): Remove prototypes and make them non-static. (struct tree_int_map): Remove. * tree.h (struct tree_int_map): Move here, turning TO into an unsigned int. (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p): Declare. * tree.h (TREE_COMPLEXITY): Remove. (struct tree_exp): Remove complexity field. * tree.c (build1_stat): Don't set it. gcc/ada: 2007-02-06 Paolo Bonzini <bonzini@gnu.org> * Make-lang.in (ada/decl.o): Add gt-ada-decl.h dependency. * decl.c: Include gt-ada-decl.h. (annotate_value_cache): New. (annotate_value): Use it instead of TREE_COMPLEXITY. ........ r121648 | bonzini | 2007-02-06 06:34:51 -0800 (Tue, 06 Feb 2007) | 51 lines 2006-02-06 Paolo Bonzini <bonzini@gnu.org> * Makefile.in (tree-ssa-loop-ivopts.o): Add pointer-set.h dependency. (tree-ssa-reassoc.o): Add pointer-set.h dependency. (tree-cfg.o): Remove hashtab.h dependency. * tree-ssa-loop-ivopts.c: Include pointer-set.h. (struct ivopts_data): Change niters to pointer_map_t. (struct nfe_cache_elt, nfe_hash, nfe_eq): Delete. (niter_for_exit): Create pointer_map on demand. Change for pointer_map API. (tree_ssa_iv_optimize_init): Initialize data->niters to NULL. (free_loop_data): Destroy data->niters if created and reset field. (tree_ssa_iv_optimize_finalize): Don't delete data->niters here. (tree_ssa_iv_optimize_loop): Check for presence of stale data. * tree-ssa-reassoc.c: Include pointer-set.h. (bb_rank): Change to long *. (operand_rank): Change to pointer_map_t. (find_operand_rank): Return long, -1 if not found. Declare as inline. (insert_operand_rank): Accept long. (operand_entry_hash, operand_entry_eq): Remove. (get_rank): Return long. Adjust for changes above. (init_reassoc): Change rank type to long. Adjust creation of bb_rank and operand_rank. (fini_reassoc): Delete operand_rank with pointer_map_destroy. * tree-ssa-structalias.c (vi_for_tree): Change to pointer_map. (struct tree_vi, tree_vi_t, tree_vi_hash, tree_vi_eq): Delete. (insert_vi_for_tree): Rewrite for pointer_map API. Assert argument is not NULL. (lookup_vi_for_tree): Rewrite for pointer_map API. Return varinfo_t directly since it cannot be NULL. (get_vi_for_tree): Rewrite for pointer_map API. (find_what_p_points_to): Adjust for change to lookup_vi_for_tree. (init_alias_vars): Create vi_for_tree as pointer_map. (delete_points_to_sets): Delete vi_for_tree using pointer_map_destroy. * tree-cfg.c: Don't include hashtab.h. (edge_to_cases): Declare as pointer_map. (struct edge_to_cases_elt, edge_to_cases_hash, edge_to_cases_eq): Delete. (edge_to_cases_cleanup): Rewrite as pointer_map_traverse callback. (start_recording_case_labels): Create edge_to_cases as pointer_map. (end_recoding_case_labels): Cleanup edge_to_cases manually before destroying it. (record_switch_edge): Delete. (get_cases_for_edge): Adjust for pointer_map API, inline record_switch_edge (rewritten for new API), remove goto. ........ r121651 | aph | 2007-02-06 09:17:03 -0800 (Tue, 06 Feb 2007) | 6 lines 2007-02-06 Andrew Haley <aph@redhat.com> * scripts/makemake.tcl (emit_bc_rule): Set the source filename. * sources.am: Rebuild. ........ r121652 | ian | 2007-02-06 09:19:27 -0800 (Tue, 06 Feb 2007) | 4 lines * lower-subreg.c (simple_move_operand): Reject CONST. (resolve_clobber): Call validate_change rather than directly assigning to XEXP (pat, 0). ........ r121653 | sayle | 2007-02-06 09:29:44 -0800 (Tue, 06 Feb 2007) | 12 lines * config/rs6000/rs6000.md (popcount<mode>2): Rewrite. (parity<mode>2): New define_expand using rs6000_emit_parity. * config/rs6000/rs6000.c (rs6000_emit_popcount, rs6000_emit_parity): New functions. * config/rs6000/rs6000-protos.h (rs6000_emit_popcount, rs6000_emit_parity): Prototype here. * gcc.target/powerpc/popcount-1.c: New test case. * gcc.target/powerpc/parity-1.c: Likewise. ........ r121654 | sayle | 2007-02-06 09:35:22 -0800 (Tue, 06 Feb 2007) | 4 lines * ChangeLog: Doh! Missed in the last commit. ........ r121655 | bkoz | 2007-02-06 09:59:09 -0800 (Tue, 06 Feb 2007) | 8 lines 2007-02-06 Benjamin Kosnik <bkoz@redhat.com> Marco Trudel <mtrudel@gmx.ch> * include/precompiled/extc++.h: Guard include files that assume iconv support is present from precompilation via _GLIBCXX_HAVE_ICONV. ........ r121656 | bkoz | 2007-02-06 10:00:12 -0800 (Tue, 06 Feb 2007) | 8 lines 2007-02-06 Benjamin Kosnik <bkoz@redhat.com> Marco Trudel <mtrudel@gmx.ch> * include/precompiled/extc++.h: Guard include files that assume iconv support is present from precompilation via _GLIBCXX_HAVE_ICONV. ........ r121659 | rth | 2007-02-06 10:15:46 -0800 (Tue, 06 Feb 2007) | 1 line * gcc.target/i386/cvt-1.c: Don't expect xmm registers. ........ r121660 | rth | 2007-02-06 10:25:47 -0800 (Tue, 06 Feb 2007) | 18 lines * config/i386/constraints.md (Y2): Rename from Y. (Yi): New constraint. * config/i386/i386.md (movsi_1, movdi_2, pushdf_nointeger, pushdf_integer, movdf_nointeger, movdf_integer, zero_extendsidi2_32, zero_extendsidi2_rex64, truncxfdf2_mixed): Change Y constraints to Y2. (extendsfdf2_mixed, extendsfdf2_sse, truncdfsf_fast_mixed, truncdfsf_fast_sse, truncdfsf_mixed, fix_truncdfdi_sse, fix_truncdfsi_sse, floatsidf2_mixed, floatsidf2_sse, floatdidf2_mixed, floatdidf2_sse, absnegdf2_mixed, absnegdf2_sse, sse_setccdf, fop_df_comm_mixed, fop_df_comm_sse, fop_df_1_mixed, fop_df_1_sse): Change Y constraints to x. * config/i386/mmx.md (mov<MMXMODEI>_internal_rex64, mov<MMXMODEI>_internal, movv2sf_internal_rex64, movv2sf_internal, vec_extractv2si_1): Change Y constraints to Y2. * config/i386/sse.md (vec_setv4sf_0, vec_concatv2df, vec_dupv4si, vec_dupv2di, sse2_concatv2si, vec_concatv4si_1, vec_concatv2di): Change Y constraints to Y2. (sse2_loadld): Change Y constraints to x. ........ r121663 | spark | 2007-02-06 11:43:41 -0800 (Tue, 06 Feb 2007) | 10 lines 2007-02-06 Seongbae Park <seongbae.park@gmail.com> * global.c (compute_regsets): New function. (global_alloc): Refactored ELIMINABLE_REGSET and NO_GLOBAL_ALLOC_REGS computation out. (rest_of_handle_global_alloc): Call compute_regsets() for non-optimizing case. ........ r121664 | tromey | 2007-02-06 12:27:16 -0800 (Tue, 06 Feb 2007) | 3 lines * tools/gnu/classpath/tools/javah/JniIncludePrinter.java (printClass): Always print a header. ........ r121666 | tromey | 2007-02-06 12:43:55 -0800 (Tue, 06 Feb 2007) | 2 lines * jvspec.c (lang_specific_driver): Check for the '-' in '-I'. ........ r121670 | rakdver | 2007-02-06 13:49:49 -0800 (Tue, 06 Feb 2007) | 39 lines * doc/loop.texi: Document possibility not to perform disambiguation of loops with multiple latches. * cfgloopmanip.c (alp_enum_p): Removed. (add_loop): Handle subloops. Use get_loop_body_with_size. (create_preheader): Do not allow ENTRY_BLOCK_PTR to be preheader. * cfghooks.c (redirect_edge_and_branch_force): Set dominator for the new forwarder block. (make_forwarder_block): Only call new_bb_cbk if it is not NULL. Handle the case latch is NULL. * tree-ssa-dom.c (tree_ssa_dominator_optimize): Avoid cfg modifications when marking loop exits. * ifcvt.c (if_convert): Ditto. Mark loop exits even if cfg cannot be modified. * loop-init.c (loop_optimizer_init): Do not modify cfg. Call disambiguate_loops_with_multiple_latches. * tree-cfgcleanup.c (cleanup_tree_cfg_loop): Calculate dominators before fix_loop_structure. * cfgloop.c: Include pointer-set.h and output.h. (canonicalize_loop_headers, HEADER_BLOCK, LATCH_EDGE, update_latch_info, mfb_keep_just, mfb_keep_nonlatch): Removed. (get_loop_latch_edges, find_subloop_latch_edge_by_profile, find_subloop_latch_edge_by_ivs, find_subloop_latch_edge, mfb_redirect_edges_in_set, form_subloop, merge_latch_edges, disambiguate_multiple_latches, get_loop_body_with_size, disambiguate_loops_with_multiple_latches): New functions. (flow_loop_dump): Dump multiple latch edges. (flow_loop_nodes_find): Handle loops with multiple latches. (flow_loops_find): Ditto. Do not call canonicalize_loop_headers. (glb_enum_p): Modified. (get_loop_body): Use get_loop_body_with_size. * cfgloop.h (LOOPS_HAVE_RECORDED_EXITS): New flag. (AVOID_CFG_MODIFICATIONS): New constant. (disambiguate_loops_with_multiple_latches, add_loop, get_loop_body_with_size): Declare. * Makefile.in (cfgloop.o): Add pointer-set.h and output.h. * gcc.dg/tree-ssa/loop-25.c: New test. ........ r121671 | kkojima | 2007-02-06 15:12:35 -0800 (Tue, 06 Feb 2007) | 6 lines * config/sh/sh.c (expand_cbranchdi4): Use scratch register properly. (sh_initialize_trampoline): Add parentheses to avoid a warning. ........ r121672 | tromey | 2007-02-06 15:59:34 -0800 (Tue, 06 Feb 2007) | 1 line Checking in header files missed by earlier commit ........ r121676 | gccadmin | 2007-02-06 16:18:06 -0800 (Tue, 06 Feb 2007) | 1 line Daily bump. ........ r121681 | krebbel | 2007-02-07 01:54:47 -0800 (Wed, 07 Feb 2007) | 7 lines 2007-02-07 Andreas Krebbel <krebbel1@de.ibm.com> * raise-gcc.c (get_region_description_for, get_call_site_action_for, get_action_description_for): Replaced _Unwind_Word with _uleb128_t and _Unwind_SWord with _sleb128_t. ........ r121682 | hp | 2007-02-07 02:08:04 -0800 (Wed, 07 Feb 2007) | 13 lines * testsuite/27_io/basic_stringbuf/overflow/char/1.cc: Use only 10000 iterations for simulator targets. * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Use only 5 iterations for simulator targets. * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Ditto. * testsuite/23_containers/set/modifiers/16728.cc: Use only 10 iterations for simulator targets. ........ r121683 | hp | 2007-02-07 02:08:50 -0800 (Wed, 07 Feb 2007) | 2 lines * lib/target-supports.exp (check_effective_target_simulator): New. ........ r121684 | hp | 2007-02-07 02:09:41 -0800 (Wed, 07 Feb 2007) | 14 lines * testsuite/27_io/basic_stringbuf/overflow/char/1.cc: Use only 10000 iterations for simulator targets. * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Use only 5 iterations for simulator targets. * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Ditto. * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Ditto. * testsuite/23_containers/set/modifiers/16728.cc: Use only 10 iterations for simulator targets. ........ r121687 | jakub | 2007-02-07 04:13:39 -0800 (Wed, 07 Feb 2007) | 2 lines * config/i386/i386.c (override_options): Set PTA_SSSE3 for core2. ........ r121688 | jakub | 2007-02-07 04:16:22 -0800 (Wed, 07 Feb 2007) | 11 lines * gimplify.c (gimplify_scan_omp_clauses): Remove special casing of INDIRECT_REF <RESULT_DECL>. * cp-gimplify.c (cp_genericize_r): Don't dereference invisiref parameters and result decls in omp clauses. (cxx_omp_privatize_by_reference): Pass also invisiref PARM_DECLs by reference. * testsuite/libgomp.c++/pr30703.C: New test. ........ r121689 | jakub | 2007-02-07 05:35:17 -0800 (Wed, 07 Feb 2007) | 13 lines 2007-02-07 Bruno Haible <bruno@clisp.org> config/ * config/tls.m4 (GCC_CHECK_TLS): Also check whether the libc supports TLS via __thread. 2007-02-07 Jakub Jelinek <jakub@redhat.com> {libgomp,libstdc++-v3,libmudflap,libjava}/ * configure: Regenerate. ........ r121691 | zippel | 2007-02-07 07:56:15 -0800 (Wed, 07 Feb 2007) | 2 lines * MAINTAINERS (Write After Approval): Add myself. ........ r121694 | tromey | 2007-02-07 10:22:26 -0800 (Wed, 07 Feb 2007) | 14 lines 2007-02-07 Chris Burdess <dog@gnu.org> * gnu/xml/dom/ls/SAXEventSink.java: Add public accessor/mutators. * gnu/xml/transform/XSLURIResolver.java: Add support for custom SAXSources without a backing URL or stream. * gnu/xml/dom/DomDocumentBuilderFactory.java: Fall back to synchronous LSParser if implementation does not support asynchronous. * gnu/xml/stream/XMLParser.java, gnu/xml/stream/XIncludeFilter.java: Use custom code instead of java.net.URL to resolve to an an absolute URI, to avoid nonexistent protocol handler problems. ........ r121695 | aph | 2007-02-07 10:28:20 -0800 (Wed, 07 Feb 2007) | 8 lines 2007-02-07 Andrew Haley <aph@redhat.com> * class.c (uncache_this_class_ref): New. * expr.c (build_jni_stub): Initialize the class. (expand_byte_code): Call uncache_this_class_ref after generating code. ........ r121697 | sayle | 2007-02-07 13:29:17 -0800 (Wed, 07 Feb 2007) | 5 lines * global.c (compute_regsets): Move declatation of "i" inside of #ifdef ELIMINABLE_REGS to avoid unused variable bootstrap failure. ........ r121698 | tromey | 2007-02-07 14:02:40 -0800 (Wed, 07 Feb 2007) | 6 lines * testsuite/libjava.jni/init.c: New file. * testsuite/libjava.jni/init.java: New file. * testsuite/libjava.jni/init.out: New file. * testsuite/libjava.jni/init.jar: New file. * testsuite/libjava.jni/init.h: New file. * testsuite/libjava.jni/init$NativeClass.h: New file. ........ r121699 | tromey | 2007-02-07 14:45:11 -0800 (Wed, 07 Feb 2007) | 3 lines 2007-02-01 Marco Trudel <mtrudel@gmx.ch> * jni.cc (_Jv_JNI_DeleteWeakGlobalRef): Check for NULL objects. ........ r121700 | kgallowa | 2007-02-07 15:28:04 -0800 (Wed, 07 Feb 2007) | 6 lines 2007-02-07 Kyle Galloway <kgallowa@redhat.com> * jvmti.cc (CHECK_FOR_NATIVE_METHOD): New macro. (_Jv_JVMTI_GetMaxLocals): New method. * include/java-interp.h (_Jv_InterpMethod::get_max_locals): New method. ........ r121704 | gccadmin | 2007-02-07 16:17:42 -0800 (Wed, 07 Feb 2007) | 1 line Daily bump. ........ r121706 | sayle | 2007-02-07 16:25:06 -0800 (Wed, 07 Feb 2007) | 7 lines * config/rs6000/rs6000.md (ctz<mode>2, ffs<mode>2, popcount<mode>2, parity<mode>2, smulsi3_highpart, abstf2_internal, allocate_stack, tablejumpdi, movsi_to_cr_one): Remove constraints from define_expand's match_operands. ........ r121707 | ian | 2007-02-07 16:59:14 -0800 (Wed, 07 Feb 2007) | 2 lines * lower-subreg.c (simple_move): Reject PARTIAL_INT modes. ........ r121709 | kseitz | 2007-02-07 17:55:29 -0800 (Wed, 07 Feb 2007) | 4 lines * include/java-interp.h (_Jv_Frame::depth): New function. * jvmti.cc (_Jv_JVMTI_GetFrameCount): Use _Jv_Frame::depth. ........ r121710 | ghazi | 2007-02-07 19:19:17 -0800 (Wed, 07 Feb 2007) | 3 lines * gcc.dg/builtins-20.c: Add some -~ complex cases. ........ r121711 | hubicka | 2007-02-08 01:56:34 -0800 (Thu, 08 Feb 2007) | 2 lines * value-prof.c (visit_hist, free_hist): Return 1 instead of 0. ........ r121713 | gary | 2007-02-08 08:05:13 -0800 (Thu, 08 Feb 2007) | 7 lines 2007-02-08 Gary Benson <gbenson@redhat.com> * javax/management/MBeanServerFactory.java (servers): Initialize. (createMBeanServer): Don't initialize servers. ........ r121714 | sayle | 2007-02-08 08:41:18 -0800 (Thu, 08 Feb 2007) | 8 lines * trans-stmt.c (gfc_trans_forall_1): Optimize the cases where the mask expression is a compile-time constant (".true." or ".false."). * gfortran.dg/forall_8.f90: New test case. * gfortran.dg/forall_9.f90: Likewise. ........ r121715 | dnovillo | 2007-02-08 08:55:43 -0800 (Thu, 08 Feb 2007) | 16 lines * tree-flow.h (struct var_ann_d): Remove field 'is_used'. Update all users. * tree-ssa-alias.c (compute_is_aliased): Remove. Update all users. (init_alias_info): * tree-ssa-live.c (remove_unused_locals): Do not remove TREE_ADDRESSABLE variables. * tree-ssa-structalias.c (compute_points_to_sets): Tidy. * tree-ssa-operands.c (add_virtual_operand): Remove argument FOR_CLOBBER. Update all users. If VAR has an associated alias set, add a virtual operand for it if no alias is found to conflict with the memory reference. ........ r121716 | sayle | 2007-02-08 09:10:56 -0800 (Thu, 08 Feb 2007) | 12 lines * simplify-rtx.c (simplify_unary_operation_1) <POPCOUNT>: We can strip zero_extend, bswap and rotates from POCOUNT's argument. <PARITY>: Likewise, we can strip not, bswap, sign_extend, zero_extend and rotates from PARITY's argument. <BSWAP>: A byte-swap followed by a byte-swap is an identity. (simplify_const_unary_operation) <BSWAP>: Evaluate the byte-swap of an integer constant at compile-time. * gcc.target/i386/builtin-bswap-2.c: New test case. ........ r121717 | kgallowa | 2007-02-08 10:01:56 -0800 (Thu, 08 Feb 2007) | 6 lines 2007-02-06 Kyle Galloway <kgallowa@redhat.com> * include/java-interp.h (_Jv_InterpFrame): obj_ptr field added to hold "this" pointer for frame. (_Jv_InterpFrame::get_this_ptr): New method. * interpret-run.cc: Copy the "this" pointer into obj_ptr. ........ r121718 | uros | 2007-02-08 10:12:06 -0800 (Thu, 08 Feb 2007) | 4 lines * gcc.dg/vect/vect-strided-same-dr.c (main): Fix terminate condition of the loop. ........ r121719 | kgallowa | 2007-02-08 10:21:00 -0800 (Thu, 08 Feb 2007) | 23 lines 2007-02-08 Kyle Galloway <kgallowa@redhat.com> * classpath/gnu/classpath/jdwp/processor/ StackFrameCommandSet.java (executeGetValues): Pass jlong instead of ByteBuffer. (executeSetValues): Ditto. (executeThisObject): Ditto. * classpath/gnu/classpath/jdwp/processor/ StackFrameCommandSet.class: Rebuilt. * classpath/lib/gnu/classpath/jdwp/VMVirtualMachine.class: Rebuilt. * classpath/lib/gnu/classpath/jdwp/VMFrame.class: Rebuilt. * classpath/lib/gnu/classpath/jdwp/exception/ InvalidFrameException.java: New file. * gnu/classpath/jdwp/VMFrame.java: Added field for thread of frame. (Constructor): New method. * gnu/classpath/jdwp/VMFrame.h: Regenerated. * gnu/classpath/jdwp/VMVirtualMachine.java (getFrame): Changed ByteBuffer to jlong. * gnu/classpath/jdwp/natVMVirtualMachine.cc (getFrame): Implement. * gnu/classpath/jdwp/VMVirtualMachine.h: Regenerated. ........ r121720 | kgallowa | 2007-02-08 10:44:37 -0800 (Thu, 08 Feb 2007) | 1 line This file got left behind in my last commit, sorry. ........ r121723 | dnovillo | 2007-02-08 13:38:41 -0800 (Thu, 08 Feb 2007) | 4 lines * passes.c (init_optimization_passes): Tidy comment. ........ r121724 | hubicka | 2007-02-08 14:04:22 -0800 (Thu, 08 Feb 2007) | 3 lines * tree-cfg.c (bsi_replace): Shortcut when replacing the statement with the same one; always update histograms. ........ r121725 | dj | 2007-02-08 14:22:52 -0800 (Thu, 08 Feb 2007) | 6 lines * config/m32c/m32c-protos.h (m32c_illegal_subreg_p): New. * config/m32c/m32c.c (legal_subregs): New. (m32c_illegal_subreg_p): New. * config/m32c/predicates.md (m32c_any_operand): Use it to reject unsupported subregs of hard regs. ........ r121726 | hjagasia | 2007-02-08 14:37:01 -0800 (Thu, 08 Feb 2007) | 11 lines * config/i386/xmmintrin.h: Make inclusion of emmintrin.h conditional to __SSE2__. (Entries below should have been added to first ChangeLog entry for amdfam10 dated 2007-02-05) * config/i386/emmintrin.h: Generate #error if __SSE2__ is not defined. * config/i386/pmmintrin.h: Generate #error if __SSE3__ is not defined. * config/i386/tmmintrin.h: Generate #error if __SSSE3__ is not defined. ........ r121727 | pbrook | 2007-02-08 15:49:59 -0800 (Thu, 08 Feb 2007) | 6 lines 2007-02-08 Paul Brook <paul@codesourcery.com> * config/arm/lib1funcs.asm (RETLDM): Pop directly into PC when no special interworking needed. ........ r121731 | gccadmin | 2007-02-08 16:17:44 -0800 (Thu, 08 Feb 2007) | 1 line Daily bump. ........ r121733 | dj | 2007-02-08 16:49:48 -0800 (Thu, 08 Feb 2007) | 5 lines * config/m32c/m32c.c (m32c_unpend_compare): Add default to silence warnings. (legal_subregs): Use unsigned char, make const. (m32c_illegal_subreg_p): Use ARRAY_SIZE. Delete unused variables. ........ r121734 | kseitz | 2007-02-08 16:59:29 -0800 (Thu, 08 Feb 2007) | 6 lines * sources.am: Regenerate. * Makefile.in: Regenerate. * classpath/lib/javax/management/MBeanServerFactory.class: Regenerate. ........ r121735 | paolo | 2007-02-08 17:00:25 -0800 (Thu, 08 Feb 2007) | 7 lines 2007-02-08 Howard Hinnant <hhinnant@apple.com> * include/bits/list.tcc (list<>::remove): Take care of &*__first == &__value. * docs/html/ext/howto.html: Add an entry for DR 526. ........ r121736 | jsm28 | 2007-02-08 17:11:18 -0800 (Thu, 08 Feb 2007) | 5 lines * calls.c (store_one_arg): Pass correct alignment to emit_push_insn for non-BLKmode values. * expr.c (emit_push_insn): If STRICT_ALIGNMENT, copy to an unaligned stack slot via a suitably aligned slot. ........ r121737 | kseitz | 2007-02-08 17:16:13 -0800 (Thu, 08 Feb 2007) | 9 lines * sources.am: Regenerate. * Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. * gcj/Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * classpath/lib/javax/management/MBeanServerFactory.class: Regenerate. ........ r121739 | uros | 2007-02-09 01:32:30 -0800 (Fri, 09 Feb 2007) | 19 lines * gcc.dg/pr26570.c: Clean up coverage files. * gcc.dg/pr30172-1.c: Clean up gimple tree dump. * gcc.dg/lower-subreg-1.c: Clean up subreg rtl dump file. * gcc.dg/tree-ssa/tailrecursion-1.c: Clean up all tailr dump files. * gcc.dg/tree-ssa/tailrecursion-2.c: Ditto. * gcc.dg/tree-ssa/tailrecursion-3.c: Ditto. * gcc.dg/tree-ssa/tailrecursion-4.c: Ditto. * gcc.dg/tree-ssa/pr21658.c: Clean up all ccp dump files. * gcc.dg/tree-ssa/pr21829.c: Clean up all phicprop dump files. * gcc.dg/tree-ssa/pr15349.c: Clean up all mergephi dump files. * gcc.dg/tree-ssa/pr25501.c: Ditto. * gcc.dg/fold-compare-2.c: Clean up vrp dump files. * gcc.dg/vect/vect-recip.c: Clean up vect dump file. * gcc.dg/vect/pr28952.c: Ditto. * gcc.dg/vect/pr27151.c: Ditto. * gcc.dg/gomp/macro-3.c: Clean up omplower dump file. * g++.dg/gomp/macro-3.C: Ditto. ........ r121740 | jakub | 2007-02-09 02:53:40 -0800 (Fri, 09 Feb 2007) | 7 lines * scripts/timezones.pl: Parse each file in 2 passes, in one parse just Rule lines, in the other everything else. Pass 0 instead of $savings as second argument to parseRule when parsing the start rule. * java/util/TimeZone.java (timezones): Regenerate from tzdata2007a. ........ r121741 | paolo | 2007-02-09 04:47:41 -0800 (Fri, 09 Feb 2007) | 4 lines 2007-02-09 Paolo Carlini <pcarlini@suse.de> * scripts/testsuite_flags.in: Add back @LIBICONV@ to SECTIONLDFLAGS. ........ r121742 | rguenth | 2007-02-09 05:29:11 -0800 (Fri, 09 Feb 2007) | 12 lines 2007-02-09 Zdenek Dvorak <dvorakz@suse.cz> Richard Guenther <rguenther@suse.de> * fold-const.c (fold_comparison): Handle obfuscated comparisons against INT_MIN/INT_MAX. * tree-ssa-loop-ivcanon.c (remove_empty_loop): Print to dump file if a loop is removed. * gcc.dg/fold-compare-3.c: New testcase. * gcc.dg/tree-ssa/loop-24.c: Likewise. ........ r121743 | rsandifo | 2007-02-09 05:47:25 -0800 (Fri, 09 Feb 2007) | 34 lines gcc/ 200x-xx-xx Nathan Sidwell <nathan@codesourcery.com> Richard Sandiford <richard@codesourcery.com> * config.gcc (m68010-*-netbsdelf*, m68k*-*-netbsdelf*) (m68k*-*-openbsd*, m68k-*-linux*): Set default_cf_cpu. (m68k-*-aout*, m68k-*-coff*, m68k-*-uclinux*, m68k-*-rtems*): Add m68k/t-mlib to tmake_file. (m68020-*-elf*, m68k-*-elf*): Likewise. Add t-m68kbare as well. (m68k*-*-*): Use --with-arch to pick a default for --with-cpu. (m680[012]0-*-*, m68k*-*-*): Add support for --with-arch. Allow it to be cf or m68k. Set m68k_arch_family. If that variable is not empty, add t-$m68k_arch_family to tmake_file. Add t-mlibs to tmake_file. * doc/install.texi: Document --with-arch=m68k and --with-arch=cf. * config/m68k/t-cf: New file. * config/m68k/t-m68k: Likewise. * config/m68k/t-mlibs: Likewise. * config/m68k/t-m68kbare (MULTILIB_OPTIONS, MULTILIB_DIRNAMES) (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete. (M68K_MLIB_DIRNAMES, M68K_MLIB_OPTIONS): Define. * config/m68k/t-m68kelf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES) (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS, LIBGCC, INSTALL_LIBGCC): Delete. * config/m68k/t-openbsd (MULTILIB_OPTIONS, LIBGCC): Delete. (INSTALL_LIBGCC): Delete. (M68K_MLIB_DIRNAMES, M68K_MLIB_OPTIONS): Define. * config/m68k/t-rtems (MULTILIB_OPTIONS, MULTILIB_DIRNAMES) (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete. (M68K_MLIB_CPU): Define. * config/m68k/t-uclinux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES) (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete. (M68K_MLIB_CPU, M68K_MLIB_OPTIONS, M68K_MLIB_DIRNAMES): Define. ........ r121744 | rsandifo | 2007-02-09 05:49:14 -0800 (Fri, 09 Feb 2007) | 6 lines gcc/testsuite/ * lib/target-supports.exp (check_effective_target_coldfire_fpu): New procedure. * gcc.c-torture/execute/ieee/mul-subnormal-single-1.x: XFAIL on m68k targets if check_effective_target_coldfire_fpu returns true. ........ r121745 | rsandifo | 2007-02-09 05:50:15 -0800 (Fri, 09 Feb 2007) | 6 lines gcc/testsuite/ * gcc.dg/compat/struct-layout-1.h (v16sf): Define to v4sf on uClinux targets. (u16sf): Likewise u4sf. * g++.dg/compat/struct-layout-1.h: Likewise. ........ r121746 | rsandifo | 2007-02-09 05:50:42 -0800 (Fri, 09 Feb 2007) | 8 lines 200x-xx-xx Nathan Sidwell <nathan@codesourcery.com> gcc/testsuite/ * gcc.c-torture/execute/builtins/memops-asm-lib.c: Do the copy or set before checking whether it was allowed. * gcc.c-torture/execute/builtins/lib/memset.c: Do the memset before checking inside_main. ........ r121747 | rsandifo | 2007-02-09 05:50:56 -0800 (Fri, 09 Feb 2007) | 5 lines gcc/testsuite/ * gcc.c-torture/execute/builtins/lib/chk.c: Include <sys/types.h>. (vsnprintf): Don't define for uClibc targets. ........ r121748 | rsandifo | 2007-02-09 05:51:23 -0800 (Fri, 09 Feb 2007) | 5 lines gcc/testsuite/ * gcc.c-torture/execute/20030125-1.x: Return 1 for uClibc targets. * lib/target-supports.exp (check_effective_target_uclibc): New function. ........ r121749 | rsandifo | 2007-02-09 05:56:16 -0800 (Fri, 09 Feb 2007) | 21 lines gcc/testsuite/ * lib/target-supports.exp (check_effective_target_lax_strtofp) (check_effective_target_dummy_wcsftime): New functions. libstdc++-v3/testsuite/ * 22_locale/time_put/put/wchar_t/1.cc: XFAIL if dummy_wcsftime. * 22_locale/time_put/put/wchar_t/5.cc: Likewise. * 22_locale/time_put/put/wchar_t/9.cc: Likewise. * 22_locale/time_put/put/wchar_t/10.cc: Likewise. * 22_locale/num_get/get/wchar_t/2.cc: XFAIL if lax_strtofp. * 22_locale/num_get/get/char/2.cc: Likewise. * 27_io/basic_istream/extractors_arithmetic/wchar_t/12.cc: Likewise. * 27_io/basic_istream/extractors_arithmetic/wchar_t/09.cc: Likewise. * 27_io/basic_istream/extractors_arithmetic/char/12.cc: Likewise. * 27_io/basic_istream/extractors_arithmetic/char/09.cc: Likewise. * 27_io/basic_ostream/inserters_arithmetic/wchar_t/6.cc: Likewise. * 27_io/basic_ostream/inserters_arithmetic/char/6.cc: Likewise. * 26_numerics/cmath/c99_classification_macros_c++.cc: XFAIL for uClibc. * 26_numerics/cmath/c99_classification_macros_c.cc: Likewise. ........ r121751 | drow | 2007-02-09 07:14:37 -0800 (Fri, 09 Feb 2007) | 17 lines * Makefile.tpl (build_alias, host_alias, target_alias): Use noncanonical equivalents. * configure.in: Rename to... * configure.ac: ...this. Update AC_PREREQ. Prevent error for AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and target_noncanonical. Use them. Rewrite removal of configure arguments for autoconf 2.59. Discard variable settings. Force program_transform_name for native tools. * Makefile.in: Regenerated. * configure: Regenerated with autoconf 2.59. * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac. * acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Avoid AC_PATH_PROG with an empty path. ........ r121755 | jsm28 | 2007-02-09 07:28:13 -0800 (Fri, 09 Feb 2007) | 2 lines * libiberty.h (pex_write_input): Remove prototype. ........ r121758 | drow | 2007-02-09 07:36:20 -0800 (Fri, 09 Feb 2007) | 2 lines * gcc_update: Update for configure.in -> configure.ac. ........ r121760 | bonzini | 2007-02-09 08:31:28 -0800 (Fri, 09 Feb 2007) | 4 lines 2007-02-09 Paolo Bonzini <bonzini@gnu.org> * config.sub: Sync with src. ........ r121761 | bonzini | 2007-02-09 08:35:29 -0800 (Fri, 09 Feb 2007) | 4 lines 2007-02-09 Paolo Bonzini <bonzini@gnu.org> * Makefile.in: Regenerate. ........ r121762 | bonzini | 2007-02-09 08:44:18 -0800 (Fri, 09 Feb 2007) | 5 lines 2007-02-09 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Sync with src. * configure: Regenerate. ........ r121763 | hjagasia | 2007-02-09 08:56:45 -0800 (Fri, 09 Feb 2007) | 5 lines 2007-02-09 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com> * config/i386/driver-i386.c: Turn on -mtune=native for AMDFAM10. (bit_SSE4a): New. ........ r121765 | gary | 2007-02-09 09:15:20 -0800 (Fri, 09 Feb 2007) | 6 lines 2007-02-09 Gary Benson <gbenson@redhat.com> * javax/management/ObjectName.java (quote): Initialize StringBuilder correctly. ........ r121766 | aph | 2007-02-09 10:14:46 -0800 (Fri, 09 Feb 2007) | 6 lines 2007-02-09 Jakub Jelinek <jakub@redhat.com> * java/util/TimeZone.java: Handle default (one hour) daylight savings. ........ r121767 | rth | 2007-02-09 10:17:09 -0800 (Fri, 09 Feb 2007) | 16 lines * config/i386/constraints.md (Ym): New constraint. * config/i386/i386.md (movsi_1): Change Y2 to Yi constraints. (movdi_1_rex64): Split sse and xmm general register moves from memory move alternatives. Use conditional register constraints. (movsf_1, movdf_integer): Likewise. (zero_extendsidi2_32, zero_extendsidi2_rex64): Likewise. (movdf_integer_rex64): New. (pushsf_rex64): Fix output constraints. * config/i386/sse.md (sse2_loadld): Split rm alternative, use Yi. (sse2_stored): Likewise. (sse2_storeq_rex64): New. * config/i386/i386.c (x86_inter_unit_moves): Enable for not amd and not generic. (ix86_secondary_memory_needed): Don't bypass TARGET_INTER_UNIT_MOVES for optimize_size. Remove SF/DFmode hack. ........ r121768 | rsandifo | 2007-02-09 10:35:22 -0800 (Fri, 09 Feb 2007) | 2 lines Move misplaced changelog from last delta, and remove the file created. ........ r121769 | kseitz | 2007-02-09 10:43:21 -0800 (Fri, 09 Feb 2007) | 13 lines * gnu/classpath/jdwp/VMVirtualMachine.java (_stepping_threads): New member. * classpath/lib/gnu/classpath/jdwp/VMVirtualMachine.class: Regenerated. * gnu/classpath/jdwp/VMVirtualMachine.h: Regenerated. * gnu/claspath/jdwp/natVMVirtualMachine.cc (get_request_step_filter): New function. (DISABLE_EVENT): New macro. (initialize): Initialize _stepping_threads. (registerEvent): Implement EVENT_SINGLE_STEP. (unregisterEvent): Likewise. ........ r121770 | aph | 2007-02-09 12:08:49 -0800 (Fri, 09 Feb 2007) | 6 lines 2007-02-09 Jakub Jelinek <jakub@redhat.com> * java/util/TimeZone.java: Handle default (one hour) daylight savings. ........ r121771 | doko | 2007-02-09 12:21:20 -0800 (Fri, 09 Feb 2007) | 2 lines - reindent ChangeLog entries ........ r121773 | fxcoudert | 2007-02-09 12:31:18 -0800 (Fri, 09 Feb 2007) | 13 lines * trans-array.c (gfc_trans_create_temp_array): Remove use of the function argument. Always generate code for negative extent. Simplify said code. * trans-array.h (gfc_trans_create_temp_array): Change prototype. * trans-expr.c (gfc_conv_function_call): Remove use of last argument of gfc_trans_create_temp_array. * trans-intrinsic.c (gfc_conv_intrinsic_array_transfer): Likewise. * trans-stmt.c (gfc_conv_elemental_dependencies): Likewise. * gfortran.dg/array_function_1.f90: New test. ........ r121774 | rth | 2007-02-09 12:40:56 -0800 (Fri, 09 Feb 2007) | 1 line * sysdep/alpha/locks.h (read_barrier): New. ........ r121775 | tromey | 2007-02-09 12:53:47 -0800 (Fri, 09 Feb 2007) | 3 lines * configure: Rebuilt. * configure.ac: Also check for jack/jack.h. ........ r121776 | sayle | 2007-02-09 13:33:36 -0800 (Fri, 09 Feb 2007) | 6 lines * config/ia64/ia64.md (bswapdi2): New define_insn. * gcc.target/ia64/builtin_bswap-1.c: New test case. ........ r121777 | burnus | 2007-02-09 13:56:06 -0800 (Fri, 09 Feb 2007) | 42 lines fortran/ 2007-02-09 Tobias Burnus <burnus@net-b.de> * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc, gfc_conv_intrinsic_minmaxval): Use HUGE-1 for most negative integer. testsuite/ 2007-02-09 Tobias Burnus <burnus@net-b.de> * gfortran.dg/maxlocval_1.f90: New test. libgfortran/ 2007-02-09 Thomas Koenig <Thomas.Koenig@online.de> Tobias Burnus <burnus@net-b.de> * m4/iparm.m4: Use HUGE-1 for most negative integer. * generated/maxloc1_8_i4.c: Regenerate. * generated/maxloc0_8_i8.c: Regenerate. * generated/maxloc1_16_i4.c: Regenerate. * generated/maxloc0_16_i8.c: Regenerate. * generated/maxval_i4.c: Regenerate. * generated/maxloc1_4_i8.c: Regenerate. * generated/maxloc0_16_i16.c: Regenerate. * generated/maxloc1_4_i16.c: Regenerate. * generated/maxloc0_8_i16.c: Regenerate. * generated/maxloc0_4_i4.c: Regenerate. * generated/maxloc1_8_i8.c: Regenerate. * generated/maxloc0_8_i4.c: Regenerate. * generated/maxloc0_16_i4.c: Regenerate. * generated/maxloc1_16_i8.c: Regenerate. * generated/maxloc1_4_i4.c: Regenerate. * generated/maxval_i8.c: Regenerate. * generated/maxloc0_4_i16.c: Regenerate. * generated/maxloc1_8_i16.c: Regenerate. * generated/maxloc0_4_i8.c: Regenerate. * generated/maxloc1_16_i16.c: Regenerate. * generated/maxval_i16.c: Regenerate. ........ r121778 | drow | 2007-02-09 14:33:51 -0800 (Fri, 09 Feb 2007) | 4 lines * configure.ac: Correct syntax for Solaris ksh. * configure: Regenerated. ........ r121779 | sayle | 2007-02-09 14:36:34 -0800 (Fri, 09 Feb 2007) | 5 lines * config/alpha/alpha.c (emit_insxl): Force the first operand of the insbl or inswl pattern into a register. ........ r121780 | hubicka | 2007-02-09 14:49:30 -0800 (Fri, 09 Feb 2007) | 28 lines * Makefile.in (passes.o, ipa-inline.o): Add dependencies. * cgraphbuild.c (build_cgraph_edges): Compute frequencies. (rebuild_cgraph_edges): Likewise. * cgraph.c (cgraph_set_call_stmt): Add new argument frequency. (dump_cgraph_node): Dump frequencies. (cgraph_clone_edge): Add frequency scales. (cgraph_clone_node): Add freuqnecy. * cgraph.h (cgraph_edge): Add freuqnecy argument. (CGRAPH_FREQ_BASE, CGRAPH_FREQ_MAX): New constants. (cgraph_create_edge, cgraph_clone_edge, cgraph_clone_node): Update. * tree-pass.h (TODO_rebuild_frequencies): New constant. * cgraphunit.c (verify_cgraph_node): Verify frequencies. (cgraph_copy_node_for_versioning): Update call of cgraph_clone_edge. (save_inline_function_body): Likewise. * ipa-inline.c: inluce rtl.h (cgraph_clone_inlined_nods): Update call of cgraph_clone_node. (cgraph_edge_badness): Use frequencies. (cgraph_decide_recursive_inlining): Update clonning. (cgraph_decide_inlining_of_small_function): Dump frequency. * predict.c (estimate_bb_frequencies): Export. * predict.h (estimate_bb_frequencies): Declare. * tree-inline.c (copy_bb): Watch overflows. (expand_call_inline): Update call of cgraph_create_edge. (optimize_inline_calls): Use TODO flags to update frequnecies. * passes.h: Include predict.h (init_optimization_passes): Move profile ahead. (execute_function_todo): Handle TODO_rebuild_frequencies. ........ r121781 | hubicka | 2007-02-09 14:51:44 -0800 (Fri, 09 Feb 2007) | 3 lines * params.def (PARAM_INLINE_UNIT_GROWTH): Set to 30. * doc/invoke.texi (inline-unit-growth): Update default value. ........ r121785 | gccadmin | 2007-02-09 16:17:30 -0800 (Fri, 09 Feb 2007) | 1 line Daily bump. ........ r121787 | hp | 2007-02-09 16:30:46 -0800 (Fri, 09 Feb 2007) | 3 lines * test_summary (configflags): Adjust for changes in the config.status format due to update to autoconf 2.59. ........ r121789 | manu | 2007-02-09 17:05:18 -0800 (Fri, 09 Feb 2007) | 7 lines 2007-02-10 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * genautomata.c (longest_path_length): Delete unused function. (struct state): Delete unused longest_path_length. (UNDEFINED_LONGEST_PATH_LENGTH): Delete unused macro. (get_free_state): Delete unused. ........ r121790 | stuart | 2007-02-09 17:17:03 -0800 (Fri, 09 Feb 2007) | 19 lines * gcc/config/i386/i386.h (TARGET_KEEPS_VECTOR_ALIGNED_STACK): New. * gcc/config/i386/darwin.h: (TARGET_KEEPS_VECTOR_ALIGNED_STACK): New. * gcc/config/i386/i386.md (fixuns_trunc<mode>si2, fixuns_truncsfhi2, fixuns_truncdfhi2): New. (fix_truncsfdi_sse): Call ix86_expand_convert_sign_didf_sse. (floatunsdidf2): Call ix86_expand_convert_uns_didf_sse. (floatunssisf2): Add call to ix86_expand_convert_uns_sisf_sse. (floatunssidf2): Allow nonimmediate source. * gcc/config/i386/sse.md (movdi_to_sse): New. (vec_concatv2di): Drop '*'. * gcc/config/i386/i386-protos.h (ix86_expand_convert_uns_si_sse, ix86_expand_convert_uns_didf_sse, ix86_expand_convert_uns_sidf_sse, ix86_expand_convert_uns_sisf_sse, ix86_expand_convert_sign_didf_sse): New. * gcc/config/i386/i386.c (ix86_expand_convert_uns_si_sse, ix86_expand_convert_uns_didf_sse, ix86_expand_convert_uns_sidf_sse, ix86_expand_convert_uns_sisf_sse, ix86_expand_convert_sign_didf_sse, ix86_build_const_vector, ix86_expand_vector_init_one_nonzero): New. (ix86_build_signbit_mask): Fix decl of v, refactor to call ix86_build_const_vector. (x86_emit_floatuns): Rewrite. ........ r121791 | brooks | 2007-02-09 17:27:15 -0800 (Fri, 09 Feb 2007) | 5 lines * gfortran.dg/secnds.f: Replace time tolerance with a before-and-after bracket. * gfortran.dg/secnds-1.f: Likewise. ........ r121792 | kkojima | 2007-02-09 22:47:49 -0800 (Fri, 09 Feb 2007) | 5 lines * reload1.c (eliminate_regs_in_insn): Take the destination mode into account when computing the offset. ........ r121793 | rakdver | 2007-02-10 02:57:44 -0800 (Sat, 10 Feb 2007) | 3 lines * gcc.dg/tree-ssa/loop-25.c: Verify the result in the profile pass. ........ r121794 | bonzini | 2007-02-10 04:44:12 -0800 (Sat, 10 Feb 2007) | 2 lines sync config directory with src ........ r121795 | tkoenig | 2007-02-10 05:47:14 -0800 (Sat, 10 Feb 2007) | 7 lines 2007-02-10 Thomas Koenig <Thomas.Koenig@online.de> * Makefile.am: Remove $(srcdir) from assorted targets in maintainer mode. * Makefile.in: Regenerate. ........ r121796 | membar | 2007-02-10 06:17:58 -0800 (Sat, 10 Feb 2007) | 4 lines * Makefile.in: Rebuilt. * Makefile.am (BUILD_ECJ1): Unify the command for renaming ecjx to the host's ecj1 executable. ........ r121797 | membar | 2007-02-10 06:21:05 -0800 (Sat, 10 Feb 2007) | 3 lines * configure: Rebuilt. * configure.ac (GCJH): Reverted second part of patch of 2006-12-20. ........ r121798 | aph | 2007-02-10 06:22:54 -0800 (Sat, 10 Feb 2007) | 8 lines 2007-02-10 Andrew Haley <aph@redhat.com> * gnu/classpath/natVMStackWalker.cc (GET_CALLING_CLASS): New. (getCallingClass): Call GET_CALLING_CLASS. (getCallingClassLoader): Likewise. ........ r121800 | aoliva | 2007-02-10 11:19:10 -0800 (Sat, 10 Feb 2007) | 58 lines gcc/ChangeLog: * Makefile.in (libgcc-support, libgcc.mvars): Add emutls.c. * builtin-types.def (BT_WORD): Make unsigned. (BT_FN_VOID_PTR_WORD_WORD_PTR): New. * builtins.def (BUILT_IN_EMUTLS_GET_ADDRESS): New. (BUILT_IN_EMUTLS_REGISTER_COMMON): New. * c-decl.c (grokdeclarator): Don't error if !have_tls. * c-parser.c (c_parser_omp_threadprivate): Likewise. * dwarf2out.c (loc_descriptor_from_tree_1): Don't do anything for emulated tls. * expr.c (emutls_var_address): New. (expand_expr_real_1): Expand emulated tls. (expand_expr_addr_expr_1): Likewise. * libgcc-std.ver: Add __emutls_get_address, __emutls_register_common. * output.h (emutls_finish): Declare. * toplev.c (compile_file): Call it. * tree-ssa-address.c (gen_addr_rtx): Check for const-ness of the address before wrapping in CONST. * varasm.c (emutls_htab, emutls_object_type): New. (EMUTLS_VAR_PREFIX, EMUTLS_TMPL_PREFIX): New. (get_emutls_object_name, get_emutls_object_type): New. (get_emutls_init_templ_addr, emutls_decl): New. (emutls_common_1, emutls_finish): New. (assemble_variable): When emulating tls, swap decls; generate constructor for the emutls objects. (do_assemble_alias): When emulating tls, swap decl and target name. (default_encode_section_info): Don't add SYMBOL_FLAG_TLS_SHIFT for emulated tls. * varpool.c (decide_is_variable_needed): Look at force_output. Recurse for emulated tls. (cgraph_varpool_remove_unreferenced_decls): Remove checks redundant with decide_is_variable_needed. * emutls.c: New file. * config/sparc/sol2.h (ASM_DECLARE_OBJECT_NAME): Only emit tls_object for real tls. gcc/cp/ChangeLog: * decl.c (grokvardecl): Don't error if !have_tls. (grokdeclarator): Likewise. * parser.c (cp_parser_omp_threadprivate): Likewise. gcc/fortran/ChangeLog: * f95-lang.c (gfc_init_builtin_functions): Add __emutls_get_address and __emutls_register_common. * openmp.c (gfc_match_omp_threadprivate): Don't error if !have_tls. * trans-common.c (build_common_decl): Don't check have_tls. * trans-decl.c (gfc_finish_var_decl): Likewise. * types.def (BT_WORD, BT_FN_PTR_PTR): New. (BT_FN_VOID_PTR_WORD_WORD_PTR): New. gcc/testsuite/ChangeLog: * lib/target-supports.exp (check_effective_target_tls): Redefine to mean non-emulated tls. * gcc.dg/tls/alias-1.c: Remove tls requirement. * gcc.dg/tls/asm-1.c, gcc.dg/tls/debug-1.c, gcc.dg/tls/diag-1.c, gcc.dg/tls/diag-2.c, gcc.dg/tls/diag-3.c, gcc.dg/tls/diag-4.c, gcc.dg/tls/diag-5.c, gcc.dg/tls/init-1.c, gcc.dg/tls/nonpic-1.c, gcc.dg/tls/opt-10.c, gcc.dg/tls/opt-5.c, gcc.dg/tls/opt-6.c, gcc.dg/tls/opt-8.c, gcc.dg/tls/opt-9.c, gcc.dg/tls/pic-1.c, gcc.dg/tls/struct-1.c, gcc.dg/tls/trivial.c: Likewise. ........ r121801 | tkoenig | 2007-02-10 11:44:15 -0800 (Sat, 10 Feb 2007) | 6 lines 2007-02-10 Thomas Koenig <Thomas.Koenig@online.de> * Makefile.am: Use $(M4) instead of m4. * Makefile.in: Regenerate. ........ r121802 | danglin | 2007-02-10 11:51:40 -0800 (Sat, 10 Feb 2007) | 8 lines * pa.md (movdf): For 64-bit target, fail if operand 1 is a non-zero CONST_DOUBLE and operand 0 is a hard register. (movdi): For 64-bit target, remove code to force CONST_DOUBLE to memory. Fail if operand 1 is a non-zero CONST_INT and operand 0 is a hard floating-point register. ........ r121805 | gdr | 2007-02-10 15:30:13 -0800 (Sat, 10 Feb 2007) | 2 lines * parser.c (cp_parser_primary_expression): Reformat overly long lines. ........ r121810 | gccadmin | 2007-02-10 16:18:13 -0800 (Sat, 10 Feb 2007) | 1 line Daily bump. ........ r121815 | uros | 2007-02-11 00:09:03 -0800 (Sun, 11 Feb 2007) | 5 lines * ChangeLog: Whitespace fixes. * gcc/ChangeLog: Ditto. * gcc/testsuite/ChangeLog: Ditto. ........ r121816 | fxcoudert | 2007-02-11 03:06:15 -0800 (Sun, 11 Feb 2007) | 3 lines * MAINTAINERS (Language Front End Maintainers): Update my mail address. ........ r121817 | schwab | 2007-02-11 03:28:52 -0800 (Sun, 11 Feb 2007) | 4 lines * configure.ac: Update TOOLS_TARGET_PAIRS configuration to match gcc/ada/Makefile.in. * configure: Regenerated. ........ r121818 | dorit | 2007-02-11 03:46:07 -0800 (Sun, 11 Feb 2007) | 20 lines * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): New target hook. * targhooks.c (default_builtin_vectorized_conversion): New. * targhooks.h (default_builtin_vectorized_function): New declaration. * target.h (struct vectorize): Add builtin_conversion field. * tree-vectorizer.h (type_conversion_vec_info_type): New enum stmt_vec_info_type value. (vectorizable_conversion): New declaration. * tree-vect-analyze.c (vect_analyze_operations): Add vectorizable_conversion call. * target-def.h (TARGET_VECTORIZE_BUILTIN_CONVERSION): New. * tree-vect-transform.c (vectorizable_conversion): New function. (vect_transform_stmt): Add case for type_conversion_vec_info_type. * tree-vect-generic.c (expand_vector_operations_1): Consider correct mode. * config/rs6000/rs6000.c (rs6000_builtin_conversion): New. (TARGET_VECTORIZE_BUILTIN_CONVERSION): Defined. (rs6000_expand_builtin): Add handling a case of ALTIVEC_BUILTIN_VCFUX or ALTIVEC_BUILTIN_VCFSX. ........ r121819 | mmitchel | 2007-02-11 10:58:05 -0800 (Sun, 11 Feb 2007) | 13 lines * tree.h (DECL_REPLACEABLE_P): New macro. * except.c (set_nothrow_function_flags): Likewise. * decl.c (finish_function): Use DECL_REPLACEABLE. * tree.c (cp_cannot_inline_tree_fn): Likewise. * g++.dg/eh/weak1-C: New test. * g++.dg/eh/weak1-a.cc: Likewise. * g++.dg/eh/comdat1.C: Likewise. ........ r121820 | uros | 2007-02-11 11:48:07 -0800 (Sun, 11 Feb 2007) | 14 lines * config/i386/i386.c (TARGET_VECTORIZE_BUILTIN_CONVERSION): Define. (ix86_builtin_conversion): New function. testsuite/ChangeLog: * gcc.dg/vect/vect-intfloat-conversion-1.c: Loop gets vectorized on i?86 and x86_64. * gcc.dg/vect/vect-intfloat-conversion-2.c: Ditto. * gcc.dg/vect/vect-floatint-conversion-1.c: New. * gcc.dg/vect/vect-93.c: Another loop gets vectorized on i?86 and x86_64. * gcc.dg/vect/vect-113.c: Ditto. ........ r121821 | steven | 2007-02-11 11:53:11 -0800 (Sun, 11 Feb 2007) | 13 lines * fwprop.c (try_fwprop_subst): Use set_unique_reg_note to add the REG_EQ* note. * see.c (see_merge_one_use_extension): Likewise. * local-alloc.c (update_equiv_regs): Likewise. Also don't turn REG_EQUAL notes into REG_EQUIV notes if the target register may have more than one set. * function.c (assign_parm_setup_reg): Use set_unique_reg_note. * gcse.c (try_replace_reg): Likewise. * alias.c (init_alias_analysis): Use find_reg_equal_equiv_note. * calls.c (fixup_tail_calls): Likewise. Abort if there is more than one REG_EQUIV note. * reload1.c (gen_reload): Use set_unique_reg_note. ........ r121822 | mmitchel | 2007-02-11 12:15:13 -0800 (Sun, 11 Feb 2007) | 7 lines * pt.c (determine_specialization): Use skip_artificial_parms_for. (fn_type_unificiation): Likewise. (get_bindings): Likewise. * g++.dg/template/spec34.C: New test ........ r121824 | pault | 2007-02-11 12:58:48 -0800 (Sun, 11 Feb 2007) | 28 lines 2007-02-11 Paul Thomas <pault@gcc.gnu.org> * module.c (find_symtree_for_symbol): New function to return a symtree that is not a "unique symtree" given a symbol. (read_module): Do not automatically set pointer_info to referenced because this inhibits the generation of a unique symtree. Recycle the existing symtree if possible by calling find_symtree_for_symbol. * decl.c (add_init_expr_to_sym): Make new charlen for an array constructor initializer. 2007-02-11 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/used_dummy_types_6.f90: Add the "privatized" versions of the modules. * gfortran.dg/intrinsic_actual_2.f90: Make this legal fortran by getting rid of recursive I/O and providing functions with results. * gfortran.dg/char_array_constructor_2.f90 ........ r121825 | hubicka | 2007-02-11 13:28:32 -0800 (Sun, 11 Feb 2007) | 3 lines * ipa-inline.c (cgraph_edge_badness): Add "else" missing in the previous patch. ........ r121827 | manu | 2007-02-11 14:10:43 -0800 (Sun, 11 Feb 2007) | 5 lines 2007-02-11 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * genattrtab.c (contained_in_p): Delete unused function. (write_expr_attr_cache): Likewise. ........ r121828 | manu | 2007-02-11 14:19:49 -0800 (Sun, 11 Feb 2007) | 4 lines 2007-02-11 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * dwarf2out.c (root_type): Delete unused function. ........ r121829 | manu | 2007-02-11 14:29:27 -0800 (Sun, 11 Feb 2007) | 4 lines 2007-02-11 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * doc/invoke.texi (Wextra): Delete outdated paragraph. ........ r121830 | tobi | 2007-02-11 14:35:56 -0800 (Sun, 11 Feb 2007) | 14 lines 2007-02-11 Tobias Schlueter <tobi@gcc.gnu.org> fortran/ * decl.c (add_init_expr_to_sym): Remove ENUM specific code. (variable_decl): Likewise. Rewrap comment. (match_attr_spec): Remove ENUM specific code. (gfc_match_enum): Fix typo in error message. (enumerator_decl): New function. (gfc_match_enumerator_def): Use enumerator_decl instead of variable_decl. Adapt code accordingly. testsuite/ * gfortran.dg/enum_4.f90: Update error message checks. ........ r121831 | dfranke | 2007-02-11 15:08:01 -0800 (Sun, 11 Feb 2007) | 6 lines 2007-02-11 Daniel Franke <franke.daniel@gmail.com> * intrinsic.texi (HOSTNM): Fix typographical error in syntax. (SLEEP): Added section and documentation. ........ r121835 | gccadmin | 2007-02-11 16:17:22 -0800 (Sun, 11 Feb 2007) | 1 line Daily bump. ........ r121838 | sayle | 2007-02-11 17:43:50 -0800 (Sun, 11 Feb 2007) | 9 lines * simplify-rtx.c (simplify_relational_operation_1): Optimize comparisons of POPCOUNT against zero. (simplify_const_relational_operation): Likewise. * gcc.target/ia64/builtin-popcount-1.c: New test case. * gcc.target/ia64/builtin-popcount-2.c: Likewise. ........ r121839 | sayle | 2007-02-11 20:19:42 -0800 (Sun, 11 Feb 2007) | 4 lines * simplify-rtx.c (simplify_relational_operation_1): Correct typo. ........ r121840 | hjl | 2007-02-11 21:12:24 -0800 (Sun, 11 Feb 2007) | 5 lines 2007-02-11 H.J. Lu <hongjiu.lu@intel.com> * gcc.target/i386/sse4a-extract.c: Add "LL" to 64bit constants. * gcc.target/i386/sse4a-insert.c: Likewise. ........ r121842 | ebotcazou | 2007-02-12 00:15:47 -0800 (Mon, 12 Feb 2007) | 1 line Fix nits. ........ r121843 | manu | 2007-02-12 01:32:08 -0800 (Mon, 12 Feb 2007) | 15 lines 2007-02-12 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * doc/invoke.texi (Wunused-value): Update description. (Wextra): Delete item. * opts.c (set_Wextra): Don't use the value of Wextra to set the value of Wunused-value. * c-typeck.c (c_process_expr_stmt): Don't check extra_warnings. (c_finish_stmt_expr): Don't check extra_warnings. (emit_side_effect_warnings): The caller is responsible to check warn_unused_value. cp/ * cp-gimplify.c (gimplify_expr_stmt): Don't check extra_warnings. Check warn_unused_value just once. ........ r121844 | dorit | 2007-02-12 05:14:52 -0800 (Mon, 12 Feb 2007) | 5 lines * tree-data-ref.c (base_addr_differ_p): Make us more conservative in our handling of restrict qualified pointers. ........ r121845 | aph | 2007-02-12 06:39:44 -0800 (Mon, 12 Feb 2007) | 6 lines 2007-02-09 Jakub Jelinek <jakub@redhat.com> * java/util/VMTimeZone.java: Rewrite to handle both the old 'TZif\0' format and the new one. ........ r121847 | rth | 2007-02-12 08:10:15 -0800 (Mon, 12 Feb 2007) | 13 lines * config/alpha/constraints.md: New file. * config/alpha/alpha.c: Include tm-constrs.h. (alpha_const_ok_for_letter_p, alpha_const_double_ok_for_letter_p, alpha_extra_constraint): Remove. (alpha_emit_conditional_branch): Use satisfies_constraint_*. * config/alpha/alpha-protos.h: Update. * config/alpha/alpha.h (REG_CLASS_FROM_LETTER): Remove. (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P): Remove. (EXTRA_CONSTRAINT): Remove. * config/alpha/alpha.md: Include constraints.md. (adddi splitter): Use satisfies_constraint_*. * config/alpha/predicates.md (add_operand): Likewise. (sext_add_operand, addition_operation): Likewise. ........ r121849 | nickc | 2007-02-12 08:25:14 -0800 (Mon, 12 Feb 2007) | 33 lines * doc/invoke.texi (Overall Options): Document --help=. * gcc.c (target_help_flag): Rename to print_subprocess_flag. (cc1_options): Pass --help= on to cc1. (display_help): Add description of --help=. (process_command): Add code to handle --help=. Allow translated --help and --target-help switches to be passed on to compiler sub-process. (main): Remove unused if statement. * opts.c (columns): Remove. (LEFT_COLUMN): Define. (wrap_help): Add columns argument. (print_filtered_help): Change parameters to be an include bitmask, an exclude bitmask, an any bitmask and the column width. Move the code to display the params list here. Add code to display the status of options rather than their descriptions if the quiet flag is not active. (print_specific_help): Change parameters to be an include bitmask, an exclude bitmask and an any bitmask. Move code to look up the column width here. Decide upon the title for an options listing. (common_handle_options): Add code to handle --help=. Adapt code for --help and --target-help to use the revised form of the print_specific_help function. (print_help): Delete. (print_param_help): Delete. (print_switch): Delete. * opts.h (cl_lang_count): Add prototype. (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_MIN_OPTION_CLASS, CL_MAX_OPTION_CLASS): New defines. * optc-gen.awk: Add construction of cl_lang_count. * c.opt: Add Warning attribute to warning options and Optimization attribute to optimization options. * common.opt: Likewise. Add --help=. Add -fhelp and -ftarget-help as aliases for the transformed --help and --target-help options. * opt-functions.awk: Add code to handle Warning and Optimization attributes. ........ r121851 | sayle | 2007-02-12 10:41:08 -0800 (Mon, 12 Feb 2007) | 7 lines * config/i386/i386.md (*bswapdi2_rex): Renamed from bswapdi2. (bswapdi2): New define_expand to implement 32-bit implementation. * gcc.target/i386/builtin-bswap-3.c: New test case. ........ r121852 | rth | 2007-02-12 10:46:16 -0800 (Mon, 12 Feb 2007) | 3 lines * calls.c (emit_library_call_value_1): If PROMOTE_MODE modifed the result mode of the libcall, convert back to outmode. ........ r121853 | rth | 2007-02-12 10:53:22 -0800 (Mon, 12 Feb 2007) | 3 lines * config/alpha/alpha.md (bswapsi2, bswapdi2): New. (inswl_const): Export. ........ r121857 | jsm28 | 2007-02-12 12:49:48 -0800 (Mon, 12 Feb 2007) | 2 lines * sv.po: Update. ........ r121859 | ebotcazou | 2007-02-12 12:52:37 -0800 (Mon, 12 Feb 2007) | 4 lines * dwarf2out.c (round_up_to_align): New static function. (field_byte_offset): Use it to round the offset. ........ r121860 | rth | 2007-02-12 12:58:58 -0800 (Mon, 12 Feb 2007) | 2 lines Remove executable bits. ........ r121861 | ebotcazou | 2007-02-12 13:01:33 -0800 (Mon, 12 Feb 2007) | 5 lines * tree.h (DECL_IGNORED_P): Document further effect for FUNCTION_DECL. * cgraphunit.c (cgraph_expand_function): If DECL_IGNORED_P is set on the function, temporarily point the debug interface to the null one. ........ r121863 | uros | 2007-02-12 13:08:25 -0800 (Mon, 12 Feb 2007) | 10 lines * config/i386/i386.md (paritydi2, paritysi2): New expanders. (paritydi2_cmp, paritydi2_cmp): New insn and split patterns. (*parityhi2_cmp, *parityqi2_cmp): New insn patterns. testsuite/ChangeLog: * gcc.target/i386/parity-1.c: New test. * gcc.target/i386/parity-2.c: New test. ........ r121864 | simartin | 2007-02-12 14:17:06 -0800 (Mon, 12 Feb 2007) | 4 lines * pt.c (do_decl_instantiation): Detect type mismatches in explicit instantiations for variables. ........ r121865 | pault | 2007-02-12 15:39:51 -0800 (Mon, 12 Feb 2007) | 11 lines 2007-02-13 Paul Thomas <pault@gcc.gnu.org> * module.c (read_module): Set pointer_info to referenced if the symbol has no namespace. 2007-02-12 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/used_dummy_types_7.f90: New test. ........ r121866 | tromey | 2007-02-12 15:52:39 -0800 (Mon, 12 Feb 2007) | 16 lines libjava/classpath * java/util/Collections.java (UnmodifiableMap.toArray): Imported changes from Classpath. libjava * sources.am, Makefile.in: Rebuilt. * java/lang/Socket.java: Removed override. * java/lang/DatagramSocket.java: Removed override. * gnu/java/net/PlainSocketImpl.java (localSocketAddress): New field. (getLocalAddress): New method. * gnu/java/net/PlainDatagramSocketImpl.java (PlainDatagramSocketImpl): Throws IOException. * gnu/java/net/natPlainSocketImplPosix.cc (write): Remove 'sizeof'. (read): Likewise. ........ r121867 | mueller | 2007-02-12 15:55:17 -0800 (Mon, 12 Feb 2007) | 6 lines 2007-02-13 Dirk Mueller <dmueller@suse.de> * friend.c (do_friend): Annotate warning about friend declarations in templates with OPT_Wnon_template_friend. Convert informal message from warning() to inform(). ........ r121869 | manu | 2007-02-12 16:13:29 -0800 (Mon, 12 Feb 2007) | 4 lines 2007-02-12 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * alias.c (find_symbolic_term): Delete unused function. ........ r121873 | gccadmin | 2007-02-12 16:17:49 -0800 (Mon, 12 Feb 2007) | 1 line Daily bump. ........ r121875 | paolo | 2007-02-12 16:25:30 -0800 (Mon, 12 Feb 2007) | 17 lines 2007-02-12 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_heap.h (__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp), __adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare)): Avoid potential integer overflow. * include/bits/stl_heap.h (__is_heap(_RandomAccessIterator, _RandomAccessIterator), __is_heap(_RandomAccessIterator, _RandomAccessIterator, _StrictWeakOrdering): Mark inline. (make_heap(_RandomAccessIterator, _RandomAccessIterator, _Compare)): Do not mark inline. * include/bits/stl_heap.h (push_heap(_RandomAccessIterator, _RandomAccessIterator), sort_heap(_RandomAccessIterator, _RandomAccessIterator)): Uncomment __glibcxx_requires_heap. ........ r121876 | manu | 2007-02-12 16:29:17 -0800 (Mon, 12 Feb 2007) | 9 lines 2007-02-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * c-typeck.c (c_finish_return): Improve warning message. testsuite/ * gcc.dg/c90-return-1.c: Update output. * gcc.dg/c99-return-1.c: Likewise. ........ r121877 | rth | 2007-02-12 17:20:02 -0800 (Mon, 12 Feb 2007) | 8 lines * config/i386/i386.md (fixuns_trunc<SSEMODEF>si_1): New insn. (fixuns_trunc<SSEMODEF>si2): Use it. * config/i386/sse.md (vec_setv4sf_0): Export. * config/i386/i386.c (ix86_build_const_vector): Export. (ix86_split_convert_uns_si_sse): Rename from ix86_expand_convert_uns_si_sse and rewrite as a splitter. * config/i386/i386-protos.h: Update. ........ r121878 | kseitz | 2007-02-12 18:44:51 -0800 (Mon, 12 Feb 2007) | 5 lines * jvmti.cc (_Jv_JVMTI_GetStackTrace): Remove cast from jthread to Thread *; it is no longer needed. (_Jv_JVMTI_GetFrameCount): Likewise. Fix small formatting typo. ........ r121879 | krebbel | 2007-02-12 23:54:40 -0800 (Mon, 12 Feb 2007) | 6 lines 2007-02-13 Andreas Krebbel <krebbel1@de.ibm.com> * src/s390/ffi.c (ffi_prep_args, ffi_prep_cif_machdep, ffi_closure_helper_SYSV): Add long double handling. ........ r121881 | mueller | 2007-02-13 02:13:04 -0800 (Tue, 13 Feb 2007) | 5 lines 2007-02-13 Dirk Mueller <dmueller@suse.de> * include/bits/locale_facets.tcc (num_get<>::do_get): Avoid warning about ambiguous else. ........ r121882 | drow | 2007-02-13 05:39:19 -0800 (Tue, 13 Feb 2007) | 5 lines * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix. * configure: Regenerated. ........ r121883 | uros | 2007-02-13 06:03:03 -0800 (Tue, 13 Feb 2007) | 10 lines * config/i386/i386.md (cmpdi_ccno_1_rex64, *cmpsi_ccno_1, *cmphi_ccno_1, *cmpqi_ccno_1, *movsi_xor, *movstricthi_xor, *movstrictqi_xor, *movdi_xor_rex64, *ashldi3_1_rex64, *ashldi3_cmp_rex64, *ashldi3_cconly_rex64, ashlsi3, *ashlsi3_1_zext, *ashlsi3_cmp, *ashlsi3_cconly, *ashlsi3_cmp_zext, *ashlhi3_1_lea, *ashlhi3_1, *ashlhi3_cmp, *ashlhi3_cconly, *ashlqi3_1_lea, *ashlqi3_1, *ashlqi3_cmp, *ashlqi3_cconly): Remove equivalent assembler dialect choice from asm templates. ........ r121884 | rth | 2007-02-13 08:42:12 -0800 (Tue, 13 Feb 2007) | 9 lines * config/i386/i386.md (bswapsi_1): Rename from bswapsi2, remove flags clobber. (bswapsi2): New expander, emit code for !TARGET_BSWAP. (bswaphi_lowpart): New. (bswapdi2): Rename from bswapdi2_rex, remove flags clobber, remove TARGET_BSWAP test. Delete expander of the same name. * optabs.c (widen_bswap, expand_doubleword_bswap): New. (expand_unop): Use them. ........ r121885 | rth | 2007-02-13 08:56:32 -0800 (Tue, 13 Feb 2007) | 2 lines * gcc.c-torture/execute/ieee/pr29302-1.c: Moved from... * gcc.c-torture/execute/pr29302-1.c: ... here. ........ r121886 | rth | 2007-02-13 09:29:35 -0800 (Tue, 13 Feb 2007) | 2 lines * config/alpha/alpha.c (alpha_stdarg_optimize_hook): Strip handled_component_p before looking for the indirect_ref. ........ r121887 | aph | 2007-02-13 10:25:47 -0800 (Tue, 13 Feb 2007) | 6 lines 2007-02-13 Andrew Haley <aph@redhat.com> * testsuite/libjava.lang/Divide_2.out * testsuite/libjava.lang/Divide_2.java: New test. ........ r121889 | kseitz | 2007-02-13 10:57:01 -0800 (Tue, 13 Feb 2007) | 5 lines * gnu/classpath/jdwp/natVMVirtualMachine.cc (jdwpBreakpointCB): New function. (jdwpVMInitCB): Define and enable the breakpoint callback. ........ r121891 | stuart | 2007-02-13 11:02:57 -0800 (Tue, 13 Feb 2007) | 2 lines * gcc/config/i386/i386.md (fixuns_truncdfhi2): Require SSE2. ........ r121892 | sayle | 2007-02-13 12:42:42 -0800 (Tue, 13 Feb 2007) | 4 lines * gcc.target/ia64/builtin-bswap-2.c: New test case. ........ r121893 | drow | 2007-02-13 13:27:11 -0800 (Tue, 13 Feb 2007) | 3 lines * configure.ac (target_libraries): Move libgcc before libiberty. * configure: Regenerated. ........ r121894 | ian | 2007-02-13 14:18:26 -0800 (Tue, 13 Feb 2007) | 4 lines * lower-subreg.c (resolve_simple_move): Decompose subregs in addresses. ........ r121895 | ian | 2007-02-13 14:34:45 -0800 (Tue, 13 Feb 2007) | 92 lines ./: * common.opt: Add Wstrict-overflow and Wstrict-overflow=. * flags.h (warn_strict_overflow): Declare. (enum warn_strict_overflow_code): Define. (issue_strict_overflow_warning): New static inline function. * opts.c (warn_strict_overflow): New variable. (common_handle_option): Handle OPT_Wstrict_overflow and OPT_Wstrict_overflow_. * c-opts.c (c_common_handle_option): Set warn_strict_overflow for OPT_Wall. * fold-const.c: Include intl.h. (fold_deferring_overflow_warnings): New static variable. (fold_deferred_overflow_warning): New static variable. (fold_deferred_overflow_code): New static variable. (fold_defer_overflow_warnings): New function. (fold_undefer_overflow_warnings): New function. (fold_undefer_and_ignore_overflow_warnings): New function. (fold_deferring_overflow_warnings_p): New function. (fold_overflow_warning): New static function. (make_range): Add strict_overflow_p parameter. Change all callers. (extract_muldiv, extract_muldiv_1): Likewise. (fold_unary) [ABS_EXPR]: Check ABS_EXPR before calling tree_expr_nonnegative_p. (fold_negate_expr): Call fold_overflow_warning. (fold_range_test): Likewise. (fold_comparison): Likewise. (fold_binary): Likewise. Call tree_expr_nonnegative_warnv_p instead of tree_expr_nonnegative_p. (tree_expr_nonnegative_warnv_p): Rename from tree_expr_nonnegative_p, add strict_overflow_p parameter. (tree_expr_nonnegative_p): New function. (tree_expr_nonzero_warnv_p): Rename from tree_expr_nonzero_p, add strict_overflow_p parameter. (tree_expr_nonzero_p): New function. * passes.c (verify_interpass_invariants): New static function. (execute_one_pass): Call it. * tree-ssa-loop-niter.c (expand_simple_operations): Ignore fold warnings. (number_of_iterations_exit, loop_niter_by_eval): Likewise. (estimate_numbers_of_iterations): Likewise. (scev_probably_wraps_p): Likewise. * tree-ssa-ccp.c: Include "toplev.h". (evaluate_stmt): Defer fold overflow warnings until we know we are going to optimize. (struct fold_stmt_r_data): Add stmt field. (fold_stmt_r): Defer fold overflow warnings until we know we optimized. (fold_stmt): Initialize stmt field of fold_stmt_r_data. (fold_stmt_inplace): Likewise. * tree-cfgcleanup.c: Include "toplev.h" rather than "errors.h". (cleanup_control_expr_graph): Defer fold overflow warnings until we know we are going to optimize. * tree-cfg.c (fold_cond_expr_cond): Likewise. * tree-ssa-threadedge.c (simplify_control_stmt_condition): Likewise. * tree-vrp.c (vrp_expr_computes_nonnegative): Call tree_expr_nonnegative_warnv_p instead of tree_expr_nonnegative_p. * tree-ssa-loop-manip.c (create_iv): Likewise. * c-typeck.c (build_conditional_expr): Likewise. (build_binary_op): Likewise. * tree-vrp.c (vrp_expr_computes_nonzero): Call tree_expr_nonzero_warnv_p instead of tree_expr_nonzero_p. (extract_range_from_unary_expr): Likewise. * simplify-rtx.c (simplify_const_relational_operation): Warn when assuming that signed overflow does not occur. * c-common.c (pointer_int_sum): Ignore fold overflow warnings. * tree.h (tree_expr_nonnegative_warnv_p): Declare. (fold_defer_overflow_warnings): Declare. (fold_undefer_overflow_warnings): Declare. (fold_undefer_and_ignore_overflow_warnings): Declare. (fold_deferring_overflow_warnings_p): Declare. (tree_expr_nonzero_warnv_p): Declare. * doc/invoke.texi (Option Summary): Add -Wstrict-overflow to list of warning options. (Warning Options): Document -Wstrict-overflow. * Makefile.in (tree-ssa-threadedge.o): Depend on toplev.h. (tree-ssa-ccp.o): Likewise. (tree-cfgcleanup.o): Change errors.h dependency to toplev.h. (fold-const.o): Depend on intl.h. testsuite/: * gcc.dg/Wstrict-overflow-1.c: New test. * gcc.dg/Wstrict-overflow-2.c: New test. * gcc.dg/Wstrict-overflow-3.c: New test. * gcc.dg/Wstrict-overflow-4.c: New test. * gcc.dg/Wstrict-overflow-5.c: New test. * gcc.dg/Wstrict-overflow-6.c: New test. * gcc.dg/Wstrict-overflow-7.c: New test. * gcc.dg/Wstrict-overflow-8.c: New test. * gcc.dg/Wstrict-overflow-9.c: New test. * gcc.dg/Wstrict-overflow-10.c: New test. ........ r121900 | gccadmin | 2007-02-13 16:17:48 -0800 (Tue, 13 Feb 2007) | 1 line Daily bump. ........ r121902 | pbrook | 2007-02-13 16:29:52 -0800 (Tue, 13 Feb 2007) | 18 lines 2007-02-13 Paul Brook <paul@codesourcery.com> gcc/ * config.gcc: Add arm*-*-uclinux-*eabi. * config/arm/uclinux-elf.h (TARGET_OS_CPP_BUILTINS): Define. (SUBTARGET_EXTRA_LINK_SPEC): Define. (STARTFILE_SPEC, ENDFILE_SPEC): Remove broken -shared handling. (LINK_GCC_C_SEQUENCE_SPEC): Undef. (LINK_SPEC): Define. (LIB_SPEC): Define. * config/arm/arm.c (arm_override_options): Use r9 as EABI PIC register. * config/arm/uclinux-eabi.h: New file. * config/arm/linux-eabi.h (WCHAR_TYPE): Remove. * config/arm/linux-gas.h (WCHAR_TYPE): Use unsigned long on AAPCS based targets. ........ r121903 | spark | 2007-02-13 21:01:14 -0800 (Tue, 13 Feb 2007) | 6 lines 2007-02-13 Seongbae Park <seongbae.park@gmail.com> * bitmap.c (bitmap_and, bitmap_and_compl, bitmap_xor): Ensure dst->current is valid. ........ r121946 | nickc | 2007-02-14 00:27:01 -0800 (Wed, 14 Feb 2007) | 3 lines * builtin-types.def (DEF_FUNCTION_TYPE_x): Do not imply that at most 3 arguments are supported. (DEF_FUNCTION_TYPE_VAR_5): Fix typo in its description. ........ r121947 | bkoz | 2007-02-14 03:07:17 -0800 (Wed, 14 Feb 2007) | 7 lines 2007-02-14 Benjamin Kosnik <bkoz@redhat.com> * configure.ac: Move AM_ICONV to native-only, add HAVE_ICONV for newlib. * configure: Regenerate. ........ r121948 | gerald | 2007-02-14 05:19:26 -0800 (Wed, 14 Feb 2007) | 2 lines * ltconfig (freebsd*): Default to elf. ........ r121950 | dorit | 2007-02-14 06:10:57 -0800 (Wed, 14 Feb 2007) | 9 lines * tree-vect-analyze.c (vect_determine_vectorization_factor): Traverse also phi nodes. (vect_analyze_operations): Induction phis can now be marked as used_in_loop. (vect_mark_stmts_to_be_vectorized): No special treatment for phis. Update documentation accordingly. ........ r121951 | rguenth | 2007-02-14 08:45:23 -0800 (Wed, 14 Feb 2007) | 4 lines 2007-02-14 Richard Guenther <rguenther@suse.de> * flags.h (issue_strict_overflow_warning): Convert to a macro. ........ r121953 | rth | 2007-02-14 09:52:25 -0800 (Wed, 14 Feb 2007) | 5 lines * tree-sra.c (early_sra): New. (decl_can_be_decomposed_p): Deny va_list if early_sra. (tree_sra_early, pass_sra_early): New. * tree-pass.h (pass_sra_early): Declare. * passes.c (init_optimization_passes): Use it. ........ r121955 | aph | 2007-02-14 11:31:58 -0800 (Wed, 14 Feb 2007) | 6 lines 2007-02-14 Jakub Jelinek <jakub@redhat.com> Andrew Haley <aph@redhat.com> * java/util/TimeZone.java (getDateParams): Negate dayOfWeek. ........ r121956 | brooks | 2007-02-14 11:51:43 -0800 (Wed, 14 Feb 2007) | 2 lines * gfortran.dg/interface_10.f90: Fix comment typo. ........ r121957 | aph | 2007-02-14 11:53:22 -0800 (Wed, 14 Feb 2007) | 6 lines 2007-02-14 Jakub Jelinek <jakub@redhat.com> Andrew Haley <aph@redhat.com> * java/util/TimeZone.java (getDateParams): Negate dayOfWeek. ........ r121958 | kargl | 2007-02-14 12:02:39 -0800 (Wed, 14 Feb 2007) | 2 lines Fix a potential buffer overflow. ........ r121959 | hp | 2007-02-14 12:15:29 -0800 (Wed, 14 Feb 2007) | 4 lines * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Xfail ICE for cris-*-*. ........ r121966 | rakdver | 2007-02-14 13:54:44 -0800 (Wed, 14 Feb 2007) | 4 lines * passes.c (next_pass_1): Clear the next field of the copied pass structure. ........ r121967 | rakdver | 2007-02-14 14:06:11 -0800 (Wed, 14 Feb 2007) | 7 lines * tree-dump.c (dump_switch_p_1): Require exact match of the option name. * gcc.dg/tree-prof/update-tailcall.c: Use -fdump-tree-tailc instead of -fdump-tree-tailcall. ........ r121968 | jsm28 | 2007-02-14 15:38:01 -0800 (Wed, 14 Feb 2007) | 7 lines * emit-rtl.c (set_mem_attributes_minus_bitpos): Treat complex types as aggregates not scalars. * function.c (assign_stack_temp_for_type): Likewise. testsuite: * gcc.dg/torture/complex-alias-1.c: New test. ........ r121972 | gccadmin | 2007-02-14 16:17:48 -0800 (Wed, 14 Feb 2007) | 1 line Daily bump. ........ r121974 | kargl | 2007-02-14 16:58:01 -0800 (Wed, 14 Feb 2007) | 6 lines 2007-02-14 Steven G. Kargl <kargl@gcc.gnu.org> * primary.c (match_logical_constant): Return MATCH_ERROR on invalid kind. * gfortran.dg/logical_2.f90: New test. ........ r121976 | ghazi | 2007-02-14 19:14:39 -0800 (Wed, 14 Feb 2007) | 3 lines * g++.dg/tree-ssa/nothrow-1.C: Skip test if -fpic/-fPIC is used. ........ r121979 | aoliva | 2007-02-14 20:19:33 -0800 (Wed, 14 Feb 2007) | 6 lines gcc/ChangeLog: * dwarf2out.c (dwarf2out_finish): Accept namespaces as context of limbo die nodes. gcc/testsuite/ChangeLog: * g++.dg/ext/interface4.C, g++.dg/ext/interface4.h: New. ........ r121980 | aoliva | 2007-02-14 20:24:50 -0800 (Wed, 14 Feb 2007) | 9 lines gcc/ChangeLog: * tree-sra.c (instantiate_missing_elements): Canonicalize bit-field types. (sra_build_assignment): New. (generate_copy_inout, generate_element_copy, generate_element_zero, generate_one_element_init): Use it. gcc/testsuite/ChangeLog: * g++.dg/tree-ssa/sra-1.C: New. ........ r121981 | aoliva | 2007-02-14 20:47:23 -0800 (Wed, 14 Feb 2007) | 4 lines * config/frv/frv.md (reload_incc, reload_outcc, reload_incc_uns, reload_outcc_uns, reload_incc_nz, reload_outcc_nz): Remove invalid patterns. ........ r121982 | jvdelisle | 2007-02-14 22:48:09 -0800 (Wed, 14 Feb 2007) | 6 lines 2007-02-14 Jerry DeLisle <jvdelisle@gcc.gnu.org> * scanner.c (gfc_next_char_literal): Add check for end of file after call to advance_line. ........ r121983 | jvdelisle | 2007-02-14 22:51:42 -0800 (Wed, 14 Feb 2007) | 5 lines 2007-02-15 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/error_recovery_3.f90: New test. ........ r121984 | jvdelisle | 2007-02-14 22:55:48 -0800 (Wed, 14 Feb 2007) | 4 lines 2007-02-15 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.fortran-torture/execute/math.f90: Fix typo. ........ git-svn-id: https://gcc.gnu.org/svn/gcc/branches/fixed-point@122357 138bc75d-0d04-0410-961f-82ee72b054a4