aboutsummaryrefslogtreecommitdiff
path: root/gcc
AgeCommit message (Collapse)AuthorFilesLines
2011-05-30dwarf2out.c (modified_type_die, [...]): Use DW_TAG_rvalue_reference_type ↵Jakub Jelinek2-2/+8
even for -gdwarf-4 -fno-debug-types-section. * dwarf2out.c (modified_type_die, gen_reference_type_die): Use DW_TAG_rvalue_reference_type even for -gdwarf-4 -fno-debug-types-section. From-SVN: r174449
2011-05-30re PR tree-optimization/46728 (GCC does not generate fmadd for pow (x, ↵Bill Schmidt2-19/+152
0.75)+y on powerpc) 2011-05-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com> PR tree-optimization/46728 * tree-ssa-math-opts.c (build_and_insert_call): Reorder parms. (build_and_insert_binop): New. (gimple_expand_builtin_pow): Reorder args for build_and_insert_call; use build_and_insert_binop; add more optimizations for fractional exponents. From-SVN: r174446
2011-05-30re PR c/4910 (imacat <imacat@mail.imacat.idv.tw>)Nathan Froyd6-4/+29
fix PR bootstrap/4910 gcc/ PR bootstrap/49190 Revert: 2011-05-26 Nathan Froyd <froydnj@codesourcery.com> * tree.h (struct tree_identifier): Inherit from tree_typed, not tree_common. (HT_IDENT_TO_GCC_IDENT): Adjust for said change. * tree.c (initialize_tree_contains_struct): Mark TS_IDENTIFIER as TS_BASE instead of TS_COMMON. * varasm.c (assemble_name): Remove assert. gcc/c-family/ PR bootstrap/49190 Revert: 2011-05-26 Nathan Froyd <froydnj@codesourcery.com> * c-common.h (struct c_common_identifier): Inherit from tree_typed, not tree_common. From-SVN: r174445
2011-05-30config.gcc: Keep obselete list sorted.Richard Sandiford2-1/+5
gcc/ * config.gcc: Keep obselete list sorted. From-SVN: r174442
2011-05-30var-tracking.c (vt_add_function_parameter): Remap incoming MEMs with ↵Jakub Jelinek4-6/+100
crtl->args.internal_arg_pointer based address to... * var-tracking.c (vt_add_function_parameter): Remap incoming MEMs with crtl->args.internal_arg_pointer based address to arg_pointer_rtx if there is a DRAP register and arg_pointer_rtx is the CFA pointer. (vt_init_cfa_base): Don't equate cfa_base_rtx if stack was realigned. (vt_initialize): Initialize cfa_base_rtx if there is a DRAP register. From-SVN: r174438
2011-05-30gimple.c (gimple_types_compatible_p_1): Compare record and union type ↵Richard Guenther2-3/+14
members properly. 2011-05-30 Richard Guenther <rguenther@suse.de> * gimple.c (gimple_types_compatible_p_1): Compare record and union type members properly. From-SVN: r174436
2011-05-30re PR middle-end/49210 (verify_gimple fails building ada/einfo.o at -O3)Richard Guenther6-3/+96
2011-05-30 Richard Guenther <rguenther@suse.de> PR tree-optimization/49210 * ipa-split.c (split_function): Care for the case where the call result is not trivially convertible to the result holding variable. * gnat.dg/boolean_subtype2.adb: New testcase. * gnat.dg/boolean_subtype2.ads: Likewise. * gnat.dg/boolean_subtype2_pkg.ads: Likewise. From-SVN: r174435
2011-05-30re PR c++/49223 (Internal compiler error when using OpenMP)Jakub Jelinek5-2/+61
PR c++/49223 * semantics.c (finish_omp_clauses): Call require_complete_type even for copyin/copyprivate clauses. Only call cxx_omp_create_clause_info if inner_type is COMPLETE_TYPE_P. * g++.dg/gomp/pr49223-1.C: New test. * g++.dg/gomp/pr49223-2.C: New test. From-SVN: r174432
2011-05-30re PR middle-end/46500 (target.h includes tm.h)Joern Rennecke2-1/+12
PR middle-end/46500 gcc/java: * expr.c: Include "tm.h" . From-SVN: r174431
2011-05-30re PR tree-optimization/49218 (Incorrect optimization of a 'for' loop ↵Richard Guenther4-4/+41
creates an infinite loop) 2011-05-30 Richard Guenther <rguenther@suse.de> PR tree-optimization/49218 * tree-vrp.c (adjust_range_with_scev): Properly check whether overflow occured. * gcc.c-torture/execute/pr49218.c: New testcase. From-SVN: r174429
2011-05-30tree-ssa-forwprop.c (forward_propagate_into_comparison): New function split ↵Richard Guenther2-202/+222
out from ... 2011-05-30 Richard Guenther <rguenther@suse.de> * tree-ssa-forwprop.c (forward_propagate_into_comparison): New function split out from ... (forward_propagate_into_gimple_cond): ... here. Adjust. (forward_propagate_into_cond): Likewise. (forward_propagate_comparison): Also propagate into comparisons on assignment RHS. Change return value to behave similar to forward_propagate_into_cond. (tree_ssa_forward_propagate_single_use_vars): Handle strict-overflow warnings properly for forward_propagate_comparison. From-SVN: r174428
2011-05-30configure.ac (gcc_cv_lto_plugin): Determine lto plugin support from plugin ↵Rainer Orth3-20/+78
linker. * configure.ac (gcc_cv_lto_plugin): Determine lto plugin support from plugin linker. * configure: Regenerate. From-SVN: r174426
2011-05-30re PR tree-optimization/49199 (ICE: in vect_create_epilog_for_reduction at ↵Ira Rosen5-22/+116
tree-vect-loop.c:3445 with -O -fno-tree-scev-cprop -ftree-vectorize -funswitch-loops) PR tree-optimization/49199 * tree-vect-loop.c (vect_is_slp_reduction): Check that the non-reduction operands are either defined in the loop or by induction. From-SVN: r174425
2011-05-30Revert wrong checkinXinliang David Li1-22/+0
From-SVN: r174424
2011-05-30New option to disable/enable optimization passes.Xinliang David Li7-2/+452
From-SVN: r174423
2011-05-30Daily bump.GCC Administrator1-1/+1
From-SVN: r174422
2011-05-29i386.md (*movoi_internal_avx): Use standard_sse_constant_opcode for ↵Uros Bizjak2-38/+86
alternative 0. * config/i386/i386.md (*movoi_internal_avx): Use standard_sse_constant_opcode for alternative 0. (*movti_internal_sse): Ditto. (*movti_internal_rex64): Use standard_sse_constant_opcode for alternative 2. (*movdi_internal_rex64): Use standard_sse_constant_opcode for sselog1 type moves. (*movsi_internal): Ditto. (*movdi_internal): Ditto. Add ssecvt type moves. From-SVN: r174417
2011-05-29re PR fortran/47601 ([OOP] Internal Error: mio_component_ref(): Component ↵Janus Weil5-8/+45
not found) 2011-05-29 Janus Weil <janus@gcc.gnu.org> PR fortran/47601 * module.c (mio_component_ref): Handle components of extended types. * symbol.c (gfc_find_component): Return is sym is NULL. 2011-05-29 Janus Weil <janus@gcc.gnu.org> PR fortran/47601 * gfortran.dg/extends_13.f03: New. From-SVN: r174416
2011-05-29re PR rtl-optimization/48830 (unrecognized insn: storing invalid upper FP ↵Eric Botcazou2-2/+7
reg in SImode) PR target/48830 * rtlanal.c (simplify_subreg_regno): Adjust comment. From-SVN: r174414
2011-05-29re PR rtl-optimization/49095 (Horrible code generation for trivial decrement ↵Jakub Jelinek5-1/+174
with test) PR rtl-optimization/49095 * config/i386/predicates.md (plusminuslogic_operator): New predicate. * config/i386/i386.md: Add peepholes for mem {+,-,&,|,^}= x; mem != 0. * gcc.target/i386/pr49095.c: New test. From-SVN: r174413
2011-05-29re PR fortran/45786 (Relational operators .eq. and == are not recognized as ↵Thomas Koenig4-65/+96
equivalent) 2011-05-29 Thomas Koenig <tkoenig@gcc.gnu.org> PR fortran/45786 * interface.c (gfc_equivalent_op): New function. (gfc_check_interface): Use gfc_equivalent_op instead of switch statement. * decl.c (access_attr_decl): Also set access to an equivalent operator. 2011-05-29 Thomas Koenig <tkoenig@gcc.gnu.org> PR fortran/45786 * gfortran.dg/operator_7.f90: New test case. From-SVN: r174412
2011-05-29re PR fortran/18918 (Eventually support Fortran 2008's coarrays [co-arrays])Tobias Burnus4-0/+55
2011-05-29 Tobias Burnus <burnus@net-b.de> PR fortran/18918 * interface.c (compare_parameter): Add check for passing coarray to allocatable noncoarray dummy. 2011-05-29 Tobias Burnus <burnus@net-b.de> PR fortran/18918 * gfortran.dg/coarray_24.f90: New. From-SVN: r174411
2011-05-29re PR fortran/18918 (Eventually support Fortran 2008's coarrays [co-arrays])Tobias Burnus6-6/+30
2011-05-29 Tobias Burnus <burnus@net-b.de> Richard Guenther <rguenther@suse.de> PR fortran/18918 * trans-types.c (gfc_get_nodesc_array_type): Don't mess with the type's TREE_TYPE. * trans-array.c (gfc_conv_array_ref): Use TYPE_MAIN_VARIANT. * trans.c (gfc_build_array_ref): Ditto. 2011-05-29 Tobias Burnus <burnus@net-b.de> PR fortran/18918 * gfortran.dg/coarray_23.f90: New. Co-Authored-By: Richard Guenther <rguenther@suse.de> From-SVN: r174410
2011-05-29Add PR target/43700 to an earlier changelog entry.Richard Sandiford1-0/+1
From-SVN: r174403
2011-05-29re PR target/43995 (internal compiler error: Segmentation fault on Mips64 ↵Richard Sandiford2-16/+48
crossbuild of ext2progs) gcc/ PR target/43995 * config/mips/mips.c (mips_pic_call_symbol_from_set): Add a recurse_p argument. Only follow register copies if it is set, and prevent mips_find_pic_call_symbol from recursing. (mips_find_pic_call_symbol): Add a recurse_p argument. Pass it to mips_pic_call_symbol_from_set. (mips_annotate_pic_calls): Update accordingly. From-SVN: r174402
2011-05-29emit-rtl.c (try_split): Use a loop to search for NOTE_INSN_CALL_ARG_LOCATIONs.Richard Sandiford4-6/+25
gcc/ * emit-rtl.c (try_split): Use a loop to search for NOTE_INSN_CALL_ARG_LOCATIONs. gcc/testsuite/ From Ryan Mansfield * gcc.dg/pr48826.c: New test. From-SVN: r174401
2011-05-29re PR tree-optimization/49217 (Wrong optimization of code)Richard Guenther4-2/+38
2011-05-29 Richard Guenther <rguenther@suse.de> PR tree-optimization/49217 * ipa-pure-const.c (propagate_pure_const): Fix typos. * gcc.dg/torture/pr49217.c: New testcase. From-SVN: r174400
2011-05-29re PR testsuite/49222 (FAIL: gcc.dg/vect/pr49038.c (test for excess errors) ↵Ira Rosen2-0/+9
on *-apple-darwin*) PR testsuite/49222 * gcc.dg/vect/pr49038.c: Use MAP_ANON if MAP_ANONYMOUS is not defined. From-SVN: r174398
2011-05-29lto-streamer-out.c (hash_string_slot_node): Hash string based on its length.Jan Hubicka3-57/+87
* lto-streamer-out.c (hash_string_slot_node): Hash string based on its length. (string_slot_free): Remove (create_output_block): Initialize obstack. (destroy_output_block): Free obstack. (lto_string_index): Add PERSISTENT parameter; do not duplicate the string unless it needs to be added into the hash. (lto_output_string_with_length): Add persistent attribute; handle NULL strings. (lto_output_string): Add PERSISTENT parameter. (output_string_cst, output_identifier): Simplify. (lto_output_location_bitpack): Update. (lto_output_builtin_tree): Update. * lto-streamer.h (struct output_block): Add obstack. (lto_output_string, lto_output_string_with_length): Remove declarations; functions are static now. From-SVN: r174397
2011-05-29lto-streamer-out.c (pack_ts_fixed_cst_value_fields, [...]): Use enum and ↵Jan Hubicka6-40/+132
variable length i/o. * lto-streamer-out.c (pack_ts_fixed_cst_value_fields, pack_ts_decl_common_value_fields, pack_ts_decl_with_vis_value_fields, pack_ts_function_decl_value_fields, lto_output_builtin_tree, output_cfg, output_gimple_stmt): Use enum and variable length i/o. * lto-streamer-in.c (input_cfg, input_gimple_stmt, unpack_ts_fixed_cst_value_fields, unpack_ts_decl_common_value_fields, unpack_ts_decl_with_vis_value_fields, unpack_ts_type_common_value_fields, unpack_ts_block_value_fields, lto_get_builtin_tree): Use enum and variable length i/o. * basic-block.h (profile_status_d): Add PROFILE_LAST. * lto-streamer.h (bp_pack_int_in_range, bp_unpack_int_in_range): New functions. (bp_pack_enum, bp_unpack_enum): New macros. From-SVN: r174394
2011-05-29boolean_subtype.adb: Rename to...Eric Botcazou2-1/+6
* gnat.dg/boolean_subtype.adb: Rename to... * gnat.dg/boolean_subtype1.adb: ...this. From-SVN: r174392
2011-05-29Daily bump.GCC Administrator1-1/+1
From-SVN: r174391
2011-05-28re PR c++/46124 ([C++0x] ICE: tree check: expected var_decl or ↵Jason Merrill4-8/+36
function_decl, have error_mark in cp_parser_lambda_declarator_opt, at cp/parser.c:7817 on invalid lambda function) PR c++/46124 * parser.c (cp_parser_lambda_expression): Improve error recovery. (cp_parser_lambda_declarator_opt): Likewise. Return bool. From-SVN: r174386
2011-05-28re PR c++/47277 ([C++0x] pseudo destructor code that cause an internal ↵Jason Merrill4-3/+14
compiler error with std=gnu++0x) PR c++/47277 * parser.c (cp_parser_pseudo_destructor_name): Commit to parse after we see the ~. From-SVN: r174385
2011-05-28genrecog.c: Remove redundant forward declarations.Richard Sandiford2-77/+4
gcc/ * genrecog.c: Remove redundant forward declarations. From-SVN: r174382
2011-05-28config.gcc: Deprecate mips*-*-openbsd*.Richard Sandiford2-0/+5
gcc/ * config.gcc: Deprecate mips*-*-openbsd*. From-SVN: r174379
2011-05-28re PR bootstrap/49195 (Error building libgcc for powerpc64 since r174305)Richard Sandiford2-2/+8
gcc/ PR bootstrap/49195 * genrecog.c (add_to_sequence): Use XEXP rather than XVECEXP for match_op_dup. From-SVN: r174378
2011-05-27mangle.c (mangle_decl_string): Make sure we don't try to mangle templates.Jason Merrill3-4/+10
* mangle.c (mangle_decl_string): Make sure we don't try to mangle templates. From-SVN: r174376
2011-05-27re PR c++/47049 ([C++0x] ICE in write_unnamed_type_name with lambda use)Jason Merrill5-1/+31
PR c++/47049 * semantics.c (maybe_add_lambda_conv_op): Fix COMDAT sharing. * decl.c (start_preparsed_function): Don't call comdat_linkage for a template. From-SVN: r174375
2011-05-28Daily bump.GCC Administrator1-1/+1
From-SVN: r174373
2011-05-27Change export code to use the backend interface.Ian Lance Taylor6-32/+36
* go-backend.c: Include "output.h". (go_write_export_data): New function. * go-c.h (go_write_export_data): Declare. * Make-lang.in (go/go-backend.o): Depend on output.h. (go/export.o): Depend on $(GO_C_H). Do not depend on $(MACHMODE_H), output.h, or $(TARGET_H). From-SVN: r174366
2011-05-27re PR fortran/18918 (Eventually support Fortran 2008's coarrays [co-arrays])Tobias Burnus7-5/+92
2011-05-27 Tobias Burnus <burnus@net-b.de> PR fortran/18918 * check.c (gfc_check_associated, gfc_check_null): Add coindexed * check. * match.c (gfc_match_nullify): Ditto. * resolve.c (resolve_deallocate_expr): Ditto. * trans-types.c (gfc_get_nodesc_array_type): Don't set * restricted for nonpointers. 2011-05-27 Tobias Burnus <burnus@net-b.de> PR fortran/18918 * gfortran.dg/coarray_22.f90: New. From-SVN: r174364
2011-05-27re PR other/48981 (bootstrap-lto -O3 produces miscompiled, broken gcc)Andrew Pinski4-102/+140
2011-05-27 Andrew Pinski <pinskia@gmail.com> PR middle-end/48981 * gengtype.c (vec_prefix_type): New function. (note_def_vec): Use vec_prefix_type and change the length attribute to be based on the prefix. * vec.c: Include coretypes.h before vec.h. (struct vec_prefix): Remove. (vec_gc_p_reserve): Change the offsetof to sizeof. (vec_gc_p_reserve_exact): Likewise. (vec_heap_p_reserve): Likewise. (vec_heap_p_reserve_exact): Likewise. (vec_stack_o_reserve_1): Copy from +1 instead of from vec. (vec_stack_p_reserve): Change the offsetof to sizeof. (vec_stack_p_reserve_exact): Likewise. * vec.h (struct vec_prefix): New struct definition. (VEC_T(T,B)): Use vec_prefix instead of having num/alloc fields. (VEC_T_GTY(T,B)): Likewise. (DEF_VEC_FUNC_P(T)): Use prefix field. (DEF_VEC_NONALLOC_FUNCS_O(T,A)): Likewise. (DEF_VEC_NONALLOC_FUNCS_I(T,A)): Likewise. From-SVN: r174359
2011-05-27re PR tree-optimization/46728 (GCC does not generate fmadd for pow (x, ↵Bill Schmidt17-0/+615
0.75)+y on powerpc) 2011-05-27 Bill Schmidt <wschmidt@linux.vnet.ibm.com> PR tree-optimization/46728 * gcc.target/powerpc/pr46728-1.c: New. * gcc.target/powerpc/pr46728-2.c: New. * gcc.target/powerpc/pr46728-3.c: New. * gcc.target/powerpc/pr46728-4.c: New. * gcc.target/powerpc/pr46728-5.c: New. * gcc.dg/pr46728-6.c: New. * gcc.target/powerpc/pr46728-7.c: New. * gcc.target/powerpc/pr46728-8.c: New. * gcc.dg/pr46728-9.c: New. * gcc.target/powerpc/pr46728-10.c: New. * gcc.target/powerpc/pr46728-11.c: New. * gcc.dg/pr46728-12.c: New. * gcc.target/powerpc/pr46728-13.c: New. * gcc.target/powerpc/pr46728-14.c: New. * gcc.target/powerpc/pr46728-15.c: New. * gcc.target/powerpc/pr46728-16.c: New. From-SVN: r174358
2011-05-27re PR c++/47132 ([C++0x] decltype can't deduce some operator return types ↵Jason Merrill4-0/+25
when defining an auto function's return) PR c++/47132 * mangle.c (write_expression): Handle MODOP_EXPR. From-SVN: r174357
2011-05-27re PR c++/49176 ([c++0x] valid code rejected with "error: uninitialized const")Jason Merrill2-0/+15
PR c++/49176 * g++.dg/template/const5.C: New. From-SVN: r174356
2011-05-27re PR c++/47277 ([C++0x] pseudo destructor code that cause an internal ↵Jason Merrill4-1/+16
compiler error with std=gnu++0x) PR c++/47277 * parser.c (cp_parser_unqualified_id): Don't check constructor_name_p for enums. From-SVN: r174355
2011-05-27re PR c++/47687 ([C++0x] Crash on a lambda returning a lambda (using ↵Jason Merrill4-2/+23
std::function)) PR c++/47687 * pt.c (dependent_type_p_r): Avoid infinite recursion. From-SVN: r174354
2011-05-27re PR c++/48284 ([C++0x] incorrect printing of decltype operand in diagnostic)Jason Merrill4-1/+18
PR c++/48284 * error.c (dump_expr) [COMPONENT_REF]: Use pp_cxx_dot with INDIRECT_REF of REFERENCE_TYPE. From-SVN: r174353
2011-05-27re PR c++/49181 ([C++0x] Error reporting routines re-entered)Jason Merrill4-4/+120
PR c++/49181 * pt.c (get_mostly_instantiated_function_type): Use push_access_scope. From-SVN: r174352