1. 05 Aug, 2013 10 commits
    • Handwritten part of conversion of passes to C++ classes · f7695dbf
      gcc/
      	* Makefile.in (PASS_MANAGER_H): Add dep on pass-instances.def.
      	(toplev.o): Add dep on PASS_MANAGER_H.
      	* cgraphunit.c (cgraph_process_new_functions): Rework invocation
      	of early local pases to reflect this moving from a global to a
      	member of gcc::pass_manager.
      	(cgraph_add_new_function): Likewise.
      	* lto-cgraph.c (lto_output_node): Update for conversion of
      	struct ipa_opt_pass_d to a C++ subclass of opt_pass.
      	* passes.c (opt_pass::clone): New.
      	(opt_pass::gate): New.
      	(opt_pass::execute): New.
      	(opt_pass::opt_pass): New.
      	(pass_manager::execute_early_local_passes): New.
      	(pass_manager::execute_pass_mode_switching): new.
      	(finish_optimization_passes): Convert to...
      	(pass_manager::finish_optimization_passes): ...this.
      	(finish_optimization_passes): Update for conversion of passes to
      	C++ classes.
      	(register_dump_files_1): Use has_gate since we cannot portably
      	check a vtable entry against NULL.
      	(dump_one_pass): Likewise.
      	(ipa_write_summaries_2): Likewise.
      	(ipa_write_optimization_summaries_1): Likewise.
      	(ipa_read_summaries_1): Likewise.
      	(ipa_read_optimization_summaries_1): Likewise.
      	(execute_ipa_stmt_fixups): Likewise.
      	(pass_manager::pass_manager): Rewrite pass-creation, invoking
      	pass-creation functions rather than wiring up globals, and
      	storing the results in fields of pass_manager generated using
      	pass-instances.def.
      	(pass_manager::dump_profile_report): Update for conversion of
      	passes to C++ classes.
      	(pass_manager::execute_ipa_summary_passes): Likewise.
      	(execute_one_ipa_transform_pass): Likewise.
      	(execute_one_pass): Use has_gate and has_execute since we cannot
      	portably check a vtable entry against NULL.
      	* pass_manager.h (pass_manager::finish_optimization_passes): New.
      	(pass_manager): Use pass-instances.def to add fields for the
      	various pass instances.
      	* toplev.c (finalize): Update for move of
      	finish_optimization_passes to a method of gcc::pass_manager.
      	* toplev.h (finish_optimization_passes): Move to method of class
      	pass_manager.
      	* tree-pass.h (struct pass_data): New.
      	(opt_pass): Convert to C++ class, make it a subclass of
      	pass_data.
      	(opt_pass::gate): Convert to virtual function.
      	(opt_pass::~opt_pass): New.
      	(opt_pass::clone): New.
      	(opt_pass::execute): Convert to virtual function.
      	(opt_pass::opt_pass): New.
      	(opt_pass::ctxt_): new.
      	(gimple_opt_pass): Convert to subclass of opt_pass.
      	(gimple_opt_pass::gimple_opt_pass): New.
      	(rtl_opt_pass): Convert to subclass of opt_pass.
      	(rtl_opt_pass::rtl_opt_pass): New.
      	(ipa_opt_pass_d): Convert to subclass of opt_pass.
      	(ipa_opt_pass_d::ipa_opt_pass_d): New.
      	(simple_ipa_opt_pass): Convert to subclass of opt_pass.
      	(simple_ipa_opt_pass::simple_ipa_opt_pass): New.
      	* config/i386/i386.c (rest_of_handle_insert_vzeroupper): Rework
      	invocation of pass_mode_switching to reflect this moving from a
      	global to a member of gcc::pass_manager.
      	(ix86_option_override): Rework how pass_insert_vzeroupper is
      	added to the pass_manager to reflect autogenerated changes.
      	* config/i386/t-i386 (i386.o) Add deps on CONTEXT_H and
      	PASS_MANAGER_H.
      
      gcc/testsuite/
      	* g++.dg/plugin/dumb_plugin.c (plugin_init): Rework how the pass
      	is created and added to the pass_manager to reflect
      	autogenerated changes.
      	* g++.dg/plugin/selfassign.c (plugin_init): Likewise.
      	* gcc.dg/plugin/one_time_plugin.c (plugin_init): Likewise.
      	* gcc.dg/plugin/selfassign.c (plugin_init): Likewise.
      
      From-SVN: r201505
      David Malcolm committed
    • re PR rtl-optimization/57708 (function clobbers callee saved register on ARM) · d0b2f831
      	PR rtl-optimization/57708
      	* recog.c (peep2_find_free_register): Validate all regs in a
      	multi-reg mode.
      
      From-SVN: r201501
      Richard Earnshaw committed
    • re PR target/57792 (toplevel configure should enable "--with-sysroot="`xcrun… · 4b7dff77
      re PR target/57792 (toplevel configure should enable "--with-sysroot="`xcrun --show-sdk-path`"" for darwin13 and later)
      
      Remove:
      2013-07-10  Jack Howarth  <howarth@bromo.med.uc.edu>
      
             PR target/57792
             * configure.ac: Use --with-sysroot=\"`xcrun --show-sdk-path`\" on darwin13 and later.
             * configure: Regenerated.
      
      From-SVN: r201494
      Mike Stump committed
    • re PR lto/57602 (Runfails for several C/C++ benchmarks from spec2000 for i686… · 51a5c0c2
      re PR lto/57602 (Runfails for several C/C++ benchmarks from spec2000 for i686 with -flto after r199422)
      
      	PR lto/57602
      	* cgraph.c (verify_cgraph_node): Accept local flags from other partitions.
      	* ipa.c (symtab_remove_unreachable_nodes): Do not clear local flag.
      	(function_and_variable_visibility): Likewise.
      	* trans-mem.c (ipa_tm_create_version): TM versions are not local.
      
      From-SVN: r201492
      Jan Hubicka committed
    • graph.c (init_graph_slim_pretty_print): Remove. · 65f0a120
      	* graph.c (init_graph_slim_pretty_print): Remove.
      	(print_graph_cfg): Do not call it.  Use local pretty printer.
      	(start_graph_dump): Likewise.
      
      From-SVN: r201483
      Gabriel Dos Reis committed
    • gimple-pretty-print.c (buffer): Remove. · b3f80694
      	* gimple-pretty-print.c (buffer): Remove.
      	(initialized): Likewise.
      	(maybe_init_pretty_print): Likewise.
      	(print_gimple_stmt): Do not call it.  Use non-static local
      	pretty_printer variable.
      	(print_gimple_expr): Likewise.
      	(print_gimple_seq): Likewise.
      	(gimple_dump_bb): Likewise.
      
      From-SVN: r201482
      Gabriel Dos Reis committed
    • c-pretty-print.c (print_c_tree): Simplify. · e0aec1e9
      	* c-pretty-print.c (print_c_tree): Simplify.  Use non-static local
      	c_pretty_printer variable.
      
      From-SVN: r201481
      Gabriel Dos Reis committed
    • asan.c (asan_pp): Remove. · 11a877b3
      	* asan.c (asan_pp): Remove.
      	(asan_pp_initialized): Likewise.
      	(asan_pp_initialize): Likewise.
      	(asan_pp_string): Take a pretty_printer parameter.  Adjust callers.
      	(asan_emit_stack_protection): Tidy.  Use local pretty printer.
      	(asan_add_global): Likewise.
      
      From-SVN: r201480
      Gabriel Dos Reis committed
    • pretty-print.h (pp_base): Remove. · b066401f
      	* pretty-print.h (pp_base): Remove.  Adjust dependent macros.
      	* diagnostic.h (diagnostic_flush_buffer): Adjust.
      	* pretty-print.c (pp_formatted_text_data): Likewise.
      	(pp_indent): Rename from pp_base_indent.
      	(pp_format): Rename from pp_base_format.
      	(pp_output_formatted_text): Rename from pp_base_output_formatted_text.
      	(pp_format_verbatim): Rename from pp_base_format_verbatim.
      	(pp_flush): Rename from pp_base_flush.
      	(pp_set_line_maximum_length): Rename from
      	pp_base_set_line_maximum_length.
      	(pp_clear_output_area): Rename from pp_base_clear_output_area.
      	(pp_set_prefix): Rename from pp_base_set_prefix.
      	(pp_destroy_prefix): Rename from pp_base_destroy_prefix.
      	(pp_emit_prefix): Rename from pp_base_emit_prefix.
      	(pp_append_text): Rename from pp_base_append_text.
      	(pp_formatted_text): Rename from pp_base_formatted_text.
      	(pp_last_position_in_text): Rename from pp_base_last_position_in_text.
      	(pp_remaining_character_count_for_line): Rename from
      	pp_base_remaining_character_count_for_line.
      	(pp_newline): Rename from pp_base_newline.
      	(pp_character): Rename from pp_base_character.
      	(pp_string): Rename from pp_base_string.
      	(pp_maybe_space): Rename from pp_base_maybe_space.
      	* asan.c (asan_pp_string): Adjust.
      	(asan_emit_stack_protection): Likewise.
      	(asan_add_global): Likewise.
      	* sched-vis.c (str_pattern_slim): Adjust pretty printer function call.
      	* tree-mudflap.c (mf_varname_tree): Likewise.
      	* tree-pretty-print.c (pp_tree_identifier): Rename from
      	pp_base_tree_identifier.
      	* tree-pretty-print.h (pp_tree_identifier): Remove macro definition.
      	Declare as function.
      
      c/
      	* c-objc-common.c (c_initialize_diagnostics): Don't call pp_base.
      
      c-family/
      	* c-pretty-print.h (c_pretty_printer): Derive from pretty_printer.
      	(pp_base): Remove.
      	(pp_c_base): Likewise.  Adjust users.
      	* c-pretty-print.c (pp_c_maybe_whitespace): Adjust.
      	(pp_c_whitespace): Do not call pp_base.
      	(pp_c_left_paren): Likewise.
      	(pp_c_right_paren): Likewise.
      	(pp_c_left_brace): Likewise.
      	(pp_c_right_brace): Likewise.
      	(pp_c_left_bracket): Likewise.
      	(pp_c_right_bracket): Likewise.
      	(pp_c_dot): Likewise.
      	(pp_c_ampersand): Likewise.
      	(pp_c_star): Likewise.
      	(pp_c_arrow): Likewise.
      	(pp_c_semicolon): Likewise.
      	(pp_c_complement): Likewise.
      	(pp_c_exclamation): Likewise.
      	(pp_c_direct_declarator): Likewise.
      	(pp_c_ws_string): Likewise.
      	(pp_c_identifier): Likewise.
      	(pp_c_statement): Likewise.
      	(print_c_tree): Likewise.
      
      cp/
      	* cxx-pretty-print.h (pp_c_base): Remove.
      	(cxx_pretty_printer): Derive from c_pretty_printer.
      	Adjust macros using pp_c_base.
      	* cp-objcp-common.c (cxx_initialize_diagnostics): Do not call pp_base.
      	* cxx-pretty-print.c (pp_cxx_nonconsecutive_character): Likewise.
      	(pp_cxx_colon_colon): Likewise.
      	(pp_cxx_separate_with): Likewise.
      	(pp_cxx_storage_class_specifier): Do not call pp_c_base.
      	(pp_cxx_expression_list): Likewise.
      	(pp_cxx_space_for_pointer_operator): Likewise.
      	(pp_cxx_init_declarator): Likewise.
      	(pp_cxx_call_argument_list): Likewise.
      	(pp_cxx_constant): Likewise.
      	(pp_cxx_postfix_expression): Likewise.
      	(pp_cxx_new_expression): Likewise.
      	(pp_cxx_unary_expression): Likewise.
      	(pp_cxx_cast_expression): Likewise.
      	(pp_cxx_conditional_expression): Likewise.
      	(pp_cxx_assignment_expression): Likewise.
      	(pp_cxx_expression): Likewise.
      	(pp_cxx_function_specifier): Likewise.
      	(pp_cxx_decl_specifier_seq): Likewise.
      	(pp_cxx_simple_type_specifier): Likewise.
      	(pp_cxx_type_specifier_seq): Likewise.
      	(pp_cxx_ptr_operator): Likewise.
      	(pp_cxx_parameter_declaration_clause): Likewise.
      	(pp_cxx_direct_declarator): Likewise.
      	(pp_cxx_direct_abstract_declarator): Likewise.
      	(pp_cxx_type_id): Likewise.
      	(pp_cxx_statement): Likewise.
      	(pp_cxx_pretty_printer_init): Tidy.
      	* error.c (init_error): Do not use pp_base.
      	(dump_aggr_type): Likewise.
      	(dump_type_prefix): Likewise.
      	(dump_type_suffix): Likewise.
      	(dump_global_iord): Likewise.
      	(dump_decl): Likewise.
      	(dump_function_decl): Likewise.
      	(dump_ref_qualifier): Likewise.
      	(reinit_cxx_pp): Likewise.
      	(decl_as_dwarf_string): Likewise.
      	(lang_decl_dwarf_name): Likewise.
      	(type_to_string): Likewise.
      	(cv_to_string): Likewise.
      	(cxx_print_error_function): Likewise.
      	(cp_diagnostic_starter): Likewise.
      	(cp_diagnostic_finalizer): Likewise.
      	(cp_print_error_function): Likewise.
      	(print_instantiation_context): Likewise.
      	(cp_printer): Likewise.
      
      From-SVN: r201479
      Gabriel Dos Reis committed
    • Daily bump. · 5edf2c60
      From-SVN: r201478
      GCC Administrator committed
  2. 04 Aug, 2013 3 commits
    • re PR c++/58072 ([C++11] Error messages involving user-defined literals are poor (refer to tokens)) · 65e5a578
      gcc/c-family:
      
      2013-08-04  Ed Smith-Rowland  <3dw4rd@verizon.net>
      
      	PR c++/58072
      	* c-common.c (c_parse_error): Catch user-defined literal tokens and
      	provide useful error strings.
      
      
      gcc/testsuite:
      
      2013-08-04  Ed Smith-Rowland  <3dw4rd@verizon.net>
      
      	PR c++/58072
      	* g++.dg/cpp0x/pr58072.C: New.
      
      From-SVN: r201475
      Ed Smith-Rowland committed
    • pretty-print.h (pp_bar_bar): New. · 137a1a27
      	* pretty-print.h (pp_bar_bar): New.
      	(pp_ampersand_ampersand): Likewise.
      	(pp_less_equal): Likewise.
      	(pp_greater_equal): Likewise.
      	* gimple-pretty-print.c (dump_ternary_rhs): Use specialized pretty
      	printer functions instead of pp_string or operators and punctuators.
      	(dump_gimple_call): Likewise.
      	(dump_gimple_omp_for): Likewise.
      	(dump_gimple_transaction): Likewise.
      	(dump_gimple_phi): Likewise.
      	(pp_gimple_stmt_1): Likewise.
      	* sched-vis.c (print_insn): Likewise.
      	* tree-mudflap.c (mf_varname_tree): Likewise.
      	* tree-pretty-print.c (dump_block_node): Likewise.
      	(dump_generic_node): Likewise.
      
      c-family/ 
      	* c-ada-spec.c (pp_ada_tree_identifier): Use specialized pretty
      	printer functions instead of pp_string or operators and punctuators.
      	(dump_generic_ada_node): Likewise.
      	* c-pretty-print.c (pp_c_type_specifier): Likewise.
      	(pp_c_relational_expression): Likewise.
      	(pp_c_logical_or_expression): Likewise.
      
      cp/
      	* error.c (dump_type_prefix): Use specialized pretty printer
      	functions instead of pp_string or operators and punctuators.
      	(dump_decl): Likewise.
      	(dump_expr): Likewise.
      
      From-SVN: r201474
      Gabriel Dos Reis committed
    • Daily bump. · 8ee9fbe1
      From-SVN: r201473
      GCC Administrator committed
  3. 03 Aug, 2013 10 commits
    • DR 1286 · 45d76587
      	DR 1286
      	* pt.c (get_underlying_template): New.
      	(convert_template_argument, lookup_template_class_1): Use it.
      
      From-SVN: r201470
      Jason Merrill committed
    • DR 1430 PR c++/51239 · 9e356571
      	DR 1430
      	PR c++/51239
      	* pt.c (pack_expansion_args_count): Rename from
      	any_pack_expanson_args_p.
      	(coerce_template_parms): Reject pack expansion to
      	non-pack template parameter of alias template.
      
      From-SVN: r201469
      Jason Merrill committed
    • lto-cgraph.c (compute_ltrans_boundary): Add abstract origins into boundaries. · 815effe1
      
      	* lto-cgraph.c (compute_ltrans_boundary): Add abstract origins into
      	boundaries.
      	* lto-streamer-out.c (tree_is_indexable): Results decls and
      	parm decls are not indexable.
      	(DFS_write_tree_body): Do not follow args and results.
      	(hash_tree): Likewise.
      	(output_functions): Rearrange so struct function is needed
      	only when real body is output; be able to also ouptut abstract
      	functions; output DECL_ARGUMENTS and DECL_RESULT.
      	(lto_output): When not in WPA, ale store abstract functions.
      	(write_symbol): Do not care about RESULT_DECL.
      	(output_symbol_p): Handle correctly sbtract decls.
      	* lto-streamer-in.c (input_function): Rearrange so struct
      	function can be NULL at entry; allow streaming of
      	functions w/o body; store DECL_ARGUMENTS and DECL_RESULT.
      	* ipa.c (symtab_remove_unreachable_nodes): Silence confused
      	sanity check during LTO.
      	* tree-streamer-out.c (write_ts_decl_non_common_tree_pointers): Skip
      	RESULT_DECl and DECL_ARGUMENTS.
      	* tree-streamer-in.c (lto_input_ts_decl_non_common_tree_pointers):
      	Likewise.
      
      	* lto.c (lto_materialize_function): Do not push struct function.
      	* lto-partition.c (get_symbol_class): Handle abstracts correctly.
      	(may_need_named_section_p): Even abstract origins may need
      	named section.
      
      From-SVN: r201468
      Jan Hubicka committed
    • pretty-print.h (pp_underscore): New. · 07838b13
      	* pretty-print.h (pp_underscore): New.
      	(pp_comma): Tidy.
      	* gimple-pretty-print.c (dump_unary_rhs): Use specialized pretty
      	printer functions instead of pp_character.
      	(dump_binary_rhs): Likewise.
      	(dump_ternary_rhs): Likewise.
      	(dump_gimple_call_args): Likewise.
      	(pp_points_to_solution): Likewise.
      	(dump_gimple_call): Likewise.
      	(dump_gimple_switch): Likewise.
      	(dump_gimple_cond): Likewise.
      	(dump_gimple_bind): Likewise.
      	(dump_gimple_try): Likewise.
      	(dump_gimple_omp_for): Likewise.
      	(dump_gimple_omp_continue): Likewise.
      	(dump_gimple_omp_single): Likewise.
      	(dump_gimple_omp_sections): Likewise.
      	(dump_gimple_omp_block): Likewise.
      	(dump_gimple_omp_critical): Likewise.
      	(dump_gimple_transaction): Likewise.
      	(dump_gimple_asm): Likewise.
      	(dump_gimple_phi): Likewise.
      	(dump_gimple_omp_parallel): Likewise.
      	(dump_gimple_omp_task): Likewise.
      	(dump_gimple_omp_atomic_load): Likewise.
      	(dump_gimple_omp_atomic_store): Likewise.
      	(dump_gimple_mem_ops): Likewise.
      	(pp_gimple_stmt_1): Likewise.
      	(pp_cfg_jump): Likewise.
      	(dump_implicit_edges): Likewise.
      	(gimple_dump_bb_for_graph): Likewise.
      	* graph.c (draw_cfg_node): Likewise.
      	* langhooks.c (lhd_print_error_function): Likewise.
      	* sched-vis.c (print_exp): Likewise.
      	(print_value): Likewise.
      	(print_pattern): Likewise.
      	(print_insn): Likewise.
      	(rtl_dump_bb_for_graph): Likewise.
      	* tree-pretty-print.c (dump_function_declaration): Likewise.
      	(dump_array_domain): Likewise.
      	(dump_omp_clause): Likewise.
      	(dump_location): Likewise.
      	(dump_generic_node): Likewise.
      	(print_struct_decl): Likewise.
      	* diagnostic.c (diagnostic_show_locus): Use pp_space.
      
      c-family/
      	* c-ada-spec.c (print_ada_macros): Use specialized pretty printer
      	functions instead of pp_character.
      	(pp_ada_tree_identifier): Likewise.
      	(dump_ada_double_name): Likewise.
      	(dump_ada_function_declaration): Likewise.
      	(dump_ada_array_domains): Likewise.
      	(dump_template_types): Likewise.
      	(dump_generic_ada_node): Likewise.
      	(print_ada_declaration): Likewise.
      	(print_ada_struct_decl): Likewise.
      	* c-pretty-print.c (pp_c_integer_constant): Likewise.
      
      cp/
      	* error.c (dump_aggr_type): Use specialized pretty printer
      	functions instead of pp_character.
      	(dump_type_prefix): Likewise.
      	(dump_simple_decl): Likewise.
      	(type_to_string): Likewise.
      
      From-SVN: r201467
      Gabriel Dos Reis committed
    • gimple-ssa-strength-reduction.c (replace_mult_candidate): Update candidate table… · bb0d2039
      gimple-ssa-strength-reduction.c (replace_mult_candidate): Update candidate table when replacing a candidate statement.
      
      gcc:
      
      2013-08-03  Bill Schmidt  <wschmidt@vnet.linux.ibm.com>
      
      	* gimple-ssa-strength-reduction.c (replace_mult_candidate): Update
      	candidate table when replacing a candidate statement.
      	(replace_rhs_if_not_dup): Likewise.
      	(replace_one_candidate): Likewise.
      
      gcc/testsuite:
      
      2013-08-03  Bill Schmidt  <wschmidt@vnet.linux.ibm.com>
      
      	* gcc.dg/torture/pr57993-2.cpp: New.
      
      From-SVN: r201466
      Bill Schmidt committed
    • Implement bracket expression. · 399eeef9
      2013-08-03  Tim Shen  <timshen91@gmail.com>
      
      	Implement bracket expression.
      	* include/bits/regex.h: Remove constexpr from "|=", etc.
      	* include/bits/regex_compiler.h: Parse bracket expression.
      	* include/bits/regex_nfa.h: _Comparator and _BracketMatcher(old
      	_RangeMatcher).
      	* include/bits/regex_nfa.tcc: Implement them.
      	* testsuite/28_regex/algorithms/regex_match/extended/53622.cc:
      	from regex_search to regex_match.
      	* testsuite/28_regex/algorithms/regex_match/extended/
      	cstring_bracket_01.cc: New.
      
      From-SVN: r201465
      Tim Shen committed
    • Add Martin. · cdaa808a
      From-SVN: r201464
      Jan Hubicka committed
    • cgraphunit.c (add_new_function): Fix logic when adding from late IPA pass. · bc0ec027
      
      	* cgraphunit.c (add_new_function): Fix logic when adding from
      	late IPA pass.
      	(assemble_thunk): Rename to ...
      	(expand_thunk); .. this one; export; get it working with general functions;
      	make produced gimple valid.
      	* cgraph.h (expand_thunk): Declare.
      
      From-SVN: r201463
      Jan Hubicka committed
    • ipa-cp.c (gather_context_independent_values): Use ipa_get_param_move_cost. · 0e8853ee
      	* ipa-cp.c (gather_context_independent_values): Use ipa_get_param_move_cost.
      	(get_replacement_map): Remove PARAM; move parameter folding into tree-inline.c
      	(create_specialized_node): Update.
      	* ipa-prop.c (ipa_populate_param_decls): Do not look for origins;
      	assert that we have gimple body; update move_cost.
      	(count_formal_params): Assert that we have gimple body.
      	(ipa_dump_param): New function.
      	(ipa_alloc_node_params): Break out from ...
      	(ipa_initialize_node_params): ... here.
      	(ipa_get_vector_of_formal_parms): ICE when used in WPA.
      	(ipa_write_node_info): Stream move costs.
      	(ipa_read_node_info): Read move costs.
      	(ipa_update_after_lto_read): Do not recompute node params.
      	* ipa-prop.h (ipa_param_descriptor): Add move_cost.
      	(ipa_get_param): Check we are not in WPA.
      	(ipa_get_param_move_cost): New.
      	* tree-inline.c (tree_function_versioning): Fold replacement as needed.
      	* ipa-inline-analysis.c (inline_node_duplication_hook): Expect only
      	parm numbers to be present.
      
      	* gcc.dg/ipa/ipa-1.c: Update.
      	* gcc.dg/ipa/ipa-2.c: Update.
      	* gcc.dg/ipa/ipa-3.c: Update.
      	* gcc.dg/ipa/ipa-4.c: Update.
      	* gcc.dg/ipa/ipa-5.c: Update.
      	* gcc.dg/ipa/ipa-7.c: Update.
      	* gcc.dg/ipa/ipa-8.c: Update.
      	* gcc.dg/ipa/ipcp-1.c: Update.
      	* gcc.dg/ipa/ipcp-2.c: Update.
      
      From-SVN: r201462
      Jan Hubicka committed
    • Daily bump. · 563430f7
      From-SVN: r201461
      GCC Administrator committed
  4. 02 Aug, 2013 16 commits
  5. 01 Aug, 2013 1 commit