aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/ChangeLog
AgeCommit message (Collapse)Author
2013-04-29/cpPaolo Carlini
2013-04-29 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56450 * semantics.c (finish_decltype_type): Handle COMPOUND_EXPR. /testsuite 2013-04-29 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56450 * g++.dg/cpp0x/decltype52.C: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198420 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-292013-04-29 Richard Biener <rguenther@suse.de>Richard Biener
PR middle-end/57103 * tree-cfg.c (move_stmt_op): Fix condition under which to update TREE_BLOCK. (move_stmt_r): Remove redundant checking. * gcc.dg/autopar/pr57103.c: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198419 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-292013-04-29 Christian Bruel <christian.bruel@st.com>Christian Bruel
PR target/57108 * sh.md (tstsi_t_zero_extract_eq): Set mode for operand 0. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198405 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-29 PR tree-optimization/57083Jakub Jelinek
* tree-vrp.c (extract_range_from_binary_expr_1): For LSHIFT_EXPR with non-singleton shift count range, zero extend low_bound for uns case. * gcc.dg/torture/pr57083.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198389 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-292013-04-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>Jerry DeLisle
Backport from mainline: 2013-03-20 Tilo Schwarz <tilo@tilo-schwarz.de> PR libfortran/51825 * io/list_read.c (nml_read_obj): Don't end the component loop on a nested derived type, but continue with the next loop iteration. (nml_get_obj_data): Don't move the first_nl pointer further in the list if a qualifier was found. PR fortran/51825 * gfortran.dg/namelist_77.f90: New test. * gfortran.dg/namelist_78.f90: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198385 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-282013-04-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>Jerry DeLisle
Backport from mainline: PR libfortran/56786 * io/list_read.c (nml_parse_qualifier): Remove spurious next_char call when checking for EOF. Use error return mechanism when EOF detected. Do not return FAILURE unless parse_err_msg and parse_err_msg_size have been set. Use hit_eof. (nml_get_obj_data): Likewise use the correct error mechanism. * io/transfer.c (hit_eof): Do not set AFTER_ENDFILE if in namelist mode. PR fortran/56786 * gfortran.dg/namelist_81.f90: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198370 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-282013-04-27 Jerry DeLisle <jvdelisle@gcc.gnu.org>Jerry DeLisle
Backport from mainline: 2013-03-25 Tilo Schwarz <tilo@tilo-schwarz.de> PR libfortran/52512 * io/list_read.c (nml_parse_qualifier): To check for a derived type don't use the namelist head element type but the current element type. (nml_get_obj_data): Add current namelist element type to nml_parse_qualifier call. PR fortran/52512 * gfortran.dg/namelist_79.f90: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198366 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-27 PR target/56866Jakub Jelinek
* config/i386/i386.c (ix86_expand_mul_widen_evenodd): Don't use xop_pmacsdqh if uns_p. * config/i386/sse.md (xop_rotr<mode>3): Fix up computation of the immediate rotate count. * gcc.c-torture/execute/pr56866.c: New test. * gcc.target/i386/pr56866.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198356 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-262013-04-26 Janus Weil <janus@gcc.gnu.org>Janus Weil
Backports from trunk: PR fortran/56814 * interface.c (check_result_characteristics): Get result from interface if present. PR fortran/56968 * expr.c (gfc_check_pointer_assign): Handle generic functions returning procedure pointers. PR fortran/53685 PR fortran/57022 * check.c (gfc_calculate_transfer_sizes): Fix for array-valued SOURCE expressions. * target-memory.h (gfc_element_size): New prototype. * target-memory.c (size_array): Remove. (gfc_element_size): New function. (gfc_target_expr_size): Modified to always return the full size of the expression. 2013-04-26 Janus Weil <janus@gcc.gnu.org> Backports from trunk: PR fortran/56968 * gfortran.dg/proc_ptr_41.f90: New. PR fortran/56814 * gfortran.dg/proc_ptr_42.f90: New. PR fortran/53685 PR fortran/57022 * gfortran.dg/transfer_check_4.f90: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198345 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-25 PR rtl-optimization/57003Jakub Jelinek
* regcprop.c (copyprop_hardreg_forward_1): If ksvd.ignore_set_reg, call note_stores with kill_clobbered_value callback again after killing regs_invalidated_by_call. * gcc.target/i386/pr57003.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198321 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-25Backport of Movk fix for AArch64 from trunkIan Bolton
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198317 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-24/cpPaolo Carlini
2013-04-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56970 * init.c (build_offset_ref): Add tsubst_flags_t parameter. * semantics.c (finish_qualified_id_expr): Likewise. (finish_id_expression): Update. * typeck.c (cp_build_addr_expr_1): Likewise. * pt.c (tsubst_qualified_id, resolve_nondeduced_context): Likewise. * cp-tree.h: Update declarations. /testsuite 2013-04-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56970 * g++.dg/cpp0x/sfinae45.C: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198251 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-23Typo in testsuite/ChangeLogBill Schmidt
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198211 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-23gcc:Bill Schmidt
2013-04-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com> Steven Bosscher <steven@gcc.gnu.org> Backported from mainline. PR rtl-optimization/56605 * loop-iv.c (implies_p): Handle equal RTXs and subregs. gcc/testsuite: 2013-04-23 Bill Schmidt wschmidt@linux.vnet.ibm.com> Backported from mainline. PR rtl-optimization/56605 * gcc.target/powerpc/pr56605.c: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198207 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-22 PR sanitizer/56990Marek Polacek
* tsan.c (instrument_expr): Don't instrument expression in case its size is zero. * gcc.dg/pr56990.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198149 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-222013-04-22 Thomas Koenig <tkoenig@gcc.gnu.org>Thomas Koenig
Mikael Morin <mikael@gcc.gnu.org> PR fortran/56872 * frontend-passes.c (copy_walk_reduction_arg): Change argument type to gfc_constructor. If it has an iterator, wrap the copy of its expression in an array constructor with that iterator. Don't special case function expressions. (callback_reduction): Update caller. Don't return early if there is an iterator. 2013-04-22 Thomas Koenig <tkoenig@gcc.gnu.org> Mikael Morin <mikael@gcc.gnu.org> PR fortran/56872 * gfortran.dg/array_constructor_45.f90: New test. * gfortran.dg/array_constructor_46.f90: New test. * gfortran.dg/array_constructor_47.f90: New test. * gfortran.dg/array_constructor_40.f90: Adjust number of while loops. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198139 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-18fortran/Mikael Morin
PR fortran/56816 * match.c (gfc_match_select_type): Add syntax error. Move namespace allocation and cleanup... * parse.c (decode_statement): ... here. testsuite/ PR fortran/56816 * gfortran.dg/select_type_33.f03: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198065 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-18 PR tree-optimization/56984Jakub Jelinek
* tree-vrp.c (register_edge_assert_for_2): For (x >> M) < N and (x >> M) >= N don't register any assertion if N << M is the minimum value. * gcc.c-torture/compile/pr56984.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198052 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-18 PR rtl-optimization/56992Jakub Jelinek
* gcc.dg/pr56992.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@198047 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-16 Backport from mainlineUros Bizjak
2013-04-16 Uros Bizjak <ubizjak@gmail.com> * g++.dg/ipa/devirt-c-7.C: Require nonpic effective target. * gcc.c-torture/execute/pr33992.x: Remove. * gcc.c-torture/execute/pr33992.c (foo): Declare as static. * gcc.dg/uninit-pred-5_a.c (foo): Ditto. * gcc.dg/uninit-pred-5_b.c (foo): Ditto. Backport from mainline 2013-03-27 Alexander Ivchenko <alexander.ivchenko@intel.com> * g++.dg/ipa/ivinline-1.C: Add target nonpic. * g++.dg/ipa/ivinline-2.C: Likewise. * g++.dg/ipa/ivinline-3.C: Likewise. * g++.dg/ipa/ivinline-4.C: Likewise. * g++.dg/ipa/ivinline-5.C: Likewise. * g++.dg/ipa/ivinline-7.C: Likewise. * g++.dg/ipa/ivinline-8.C: Likewise. * g++.dg/ipa/ivinline-9.C: Likewise. * g++.dg/cpp0x/noexcept03.C: Likewise. * gcc.dg/const-1.c: Likewise. * gcc.dg/ipa/pure-const-1.c: Likewise. * gcc.dg/noreturn-8.c: Likewise. * gcc.target/i386/mmx-1.c: Likewise. * gcc.dg/tree-ssa/ipa-split-5.c: Likewise. * gcc.dg/tree-ssa/loadpre6.c: Likewise. * gcc.c-torture/execute/pr33992.x: New file. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197998 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-15 PR tree-optimization/56962Jakub Jelinek
* gimple-ssa-strength-reduction.c (record_increment): Only set initializer if gimple_assign_rhs_code is {,POINTER_}PLUS_EXPR and either rhs1 or rhs2 is equal to c->base_expr. * gcc.c-torture/execute/pr56962.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197979 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-15 PR target/56890Eric Botcazou
* config/sparc/sparc.c (enum sparc_mode_class): Add H_MODE value. (S_MODES): Set H_MODE bit. (SF_MODES): Set only S_MODE and SF_MODE bits. (DF_MODES): Set SF_MODES and only D_MODE and DF_MODE bits. (sparc_init_modes) <MODE_INT>: Set H_MODE bit for sub-word modes. <MODE_VECTOR_INT>: Do not set SF_MODE for sub-word modes. <MODE_FLOAT>: Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197959 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-122013-04-12 Vladimir Makarov <vmakarov@redhat.com>Vladimir Makarov
PR target/56903 * config/i386/i386.c (ix86_hard_regno_mode_ok): Add lra_in_progress for return. 2013-04-12 Vladimir Makarov <vmakarov@redhat.com> PR target/56903 * gcc.target/i386/pr56903.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197928 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-12 PR tree-optimization/56918Jakub Jelinek
PR tree-optimization/56920 * fold-const.c (int_const_binop_1): Use op1.mul_with_sign (op2, ...) instead of op1 - op2. Pass 2 * TYPE_PRECISION (type) as second argument to rshift method. * gcc.dg/vect/pr56918.c: New test. * gcc.dg/vect/pr56920.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197847 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-11 PR c++/56895Jakub Jelinek
* call.c (null_ptr_cst_p): Call fold_non_dependent_expr_sfinae before calling maybe_constant_value for C++98. * g++.dg/template/arrow4.C: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197825 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-11/cpPaolo Carlini
2013-04-11 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56913 * typeck2.c (build_m_component_ref): Protect error calls with (complain & tf_error). /testsuite 2013-04-11 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56913 * g++.dg/cpp0x/sfinae44.C: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197814 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-11Backport: [PATCH, AARCH64] Fix unrecognizable insn issue with vcond against 0.0fJames Greenhalgh
gcc/ Backported from mainline. * config/aarch64/aarch64-simd.md (aarch64_vcond_internal): Fix floating-point vector comparisons against 0. gcc/testsuite/ Backported from mainline. * gcc.target/aarch64/vect-fcm.x: Add check for zero forms of inverse operands. * gcc.target/aarch64/vect-fcm-eq-d.c: Check that new zero form loop is vectorized. * gcc.target/aarch64/vect-fcm-eq-f.c: Likewise. * gcc.target/aarch64/vect-fcm-ge-d.c: Check that new zero form loop is vectorized and that the correct instruction is generated. * gcc.target/aarch64/vect-fcm-ge-f.c: Likewise. * gcc.target/aarch64/vect-fcm-gt-d.c: Likewise. * gcc.target/aarch64/vect-fcm-gt-f.c: Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197804 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-11 PR tree-optimization/56899Jakub Jelinek
* fold-const.c (extract_muldiv_1): Apply distributive law only if TYPE_OVERFLOW_WRAPS (ctype). * gcc.c-torture/execute/pr56899.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197693 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-10 PR c++/56895Jakub Jelinek
* typeck.c (cp_build_binary_op): Call fold_non_dependent_expr_sfinae first before calling maybe_constant_value for warn_for_div_by_zero or invalid shift count warning purposes. * g++.dg/template/arrow3.C: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197662 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-10 Backported from mainlineJakub Jelinek
2013-04-09 Jakub Jelinek <jakub@redhat.com> PR middle-end/56883 * omp-low.c (expand_omp_for_generic, expand_omp_for_static_nochunk, expand_omp_for_static_chunk): Use simple_p = true in force_gimple_operand_gsi calls when assigning to addressable decls. * c-c++-common/gomp/pr56883.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197661 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-082013-04-08 Thomas Koenig <tkoenig@gcc.gnu.org>Thomas Koenig
PR fortran/56782 Backport from trunk. * frontend-passes.c (callback_reduction): Dont't do any simplification if there is only a single element which has an iterator. 2013-04-08 Thomas Koenig <tkoenig@gcc.gnu.org> PR fortran/56782 Backport from trunk. * gfortran.dg/array_constructor_44.f90: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197612 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-08 * gcc.c-torture/execute/pr56837.c: New test.Jakub Jelinek
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197583 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-04 PR tree-optimization/48186Marek Polacek
* predict.c (maybe_hot_frequency_p): Return false if HOT_BB_FREQUENCY_FRACTION is 0. (cgraph_maybe_hot_edge_p): Likewise. * gcc.dg/pr48186.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197488 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-042013-04-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>Kyrylo Tkachov
Backport from mainline: 2013-03-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com> PR target/56720 * config/arm/iterators.md (v_cmp_result): New mode attribute. * config/arm/neon.md (vcond<mode><mode>): Handle unordered cases. * gcc.target/arm/neon-vcond-gt.c: New test. * gcc.target/arm/neon-vcond-ltgt.c: Likewise. * gcc.target/arm/neon-vcond-unordered.c: Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197485 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-042013-04-04 Richard Biener <rguenther@suse.de>Richard Biener
PR tree-optimization/56837 * tree-loop-distribution.c (classify_partition): For non-zero values require that the value has the same precision as its mode to be useful as memset value. * g++.dg/torture/pr56837.C: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197477 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-03 PR sanitizer/55702Marek Polacek
* tsan.c (instrument_func_exit): Allow BUILT_IN_RETURN functions. * gcc.dg/pr55702.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197432 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-03 PR debug/56819Jakub Jelinek
* tree.c (strip_typedefs): Copy NON_DEFAULT_TEMPLATE_ARGS_COUNT from args to new_args. (strip_typedefs_expr): Copy NON_DEFAULT_TEMPLATE_ARGS_COUNT from t to r instead of doing {S,G}ET_NON_DEFAULT_TEMPLATE_ARGS_COUNT. * g++.dg/debug/pr56819.C: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197421 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-032013-04-03 Richard Biener <rguenther@suse.de>Richard Biener
PR tree-optimization/56817 * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely): Split out ... (tree_unroll_loops_completely_1): ... new function to manually walk the loop tree, properly defering outer loops of unrolled loops to later iterations. * g++.dg/torture/pr56817.C: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197414 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-032013-04-03 Richard Biener <rguenther@suse.de>Richard Biener
PR tree-optimization/55964 * gcc.dg/torture/pr55964-2.c: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197404 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-032013-04-03 Richard Biener <rguenther@suse.de>Richard Biener
PR tree-optimization/56501 * gcc.dg/torture/pr56501.c: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197402 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-032013-04-03 Richard Biener <rguenther@suse.de>Richard Biener
PR tree-optimization/56407 * gcc.dg/torture/pr56407.c: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197400 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-02 PR rtl-optimization/56745Jakub Jelinek
* ifcvt.c (cond_exec_find_if_block): Don't try to optimize if then_bb has no successors and else_bb is EXIT_BLOCK_PTR. * gcc.c-torture/compile/pr56745.c: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197372 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-02libgfortran/Tobias Burnus
2013-04-02 Tobias Burnus <burnus@net-b.de> Backport from mainline: 2013-03-28 Tobias Burnus <burnus@net-b.de> PR fortran/56735 * io/list_read.c (nml_query): Only abort when an error occured. (namelist_read): Add goto instead of falling through. gcc/testsuite/ 2013-04-02 Tobias Burnus <burnus@net-b.de> Backport from mainline: 2013-03-28 Tobias Burnus <burnus@net-b.de> PR fortran/56735 * gfortran.dg/namelist_80.f90: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197361 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-02libgfortran/Tobias Burnus
2013-04-02 Tobias Burnus <burnus@net-b.de> Backport from mainline: 2013-03-29 Tobias Burnus <burnus@net-b.de> PR fortran/56737 * io/format.c (parse_format): With caching, copy dtp->format string. (save_parsed_format): Use dtp->format directly without copying. 2012-03-29 Tobias Burnus <burnus@net-b.de> PR fortran/56737 * io/format.c (parse_format_list): Also cache FMT_STRING. (parse_format): Update call. gcc/testsuite/ 2013-04-02 Tobias Burnus <burnus@net-b.de> Backport from mainline: 2013-03-29 Tobias Burnus <burnus@net-b.de> PR fortran/56737 * testsuite/gfortran.dg/fmt_cache_3.f90: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197359 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-022013-04-02 Richard Biener <rguenther@suse.de>Richard Biener
PR middle-end/56768 * g++.dg/torture/pr56768.C: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197350 138bc75d-0d04-0410-961f-82ee72b054a4
2013-04-01/cpPaolo Carlini
2013-04-01 Paolo Carlini <paolo.carlini@oracle.com> PR c++/55951 * decl.c (check_array_designated_initializer): Handle CONST_DECL as ce->index. /testsuite 2013-04-01 Paolo Carlini <paolo.carlini@oracle.com> PR c++/55951 * g++.dg/ext/desig5.C: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197333 138bc75d-0d04-0410-961f-82ee72b054a4
2013-03-29ChangeLog:Kirill Yukhin
* gcc/config/i386/avx2intrin.h (_mm256_broadcastsi128_si256): Fix declaration name. testsuite/ChangeLog: * gcc.target/i386/avx2-vbroadcastsi128-1.c: Fix intrinsic name. * gcc.target/i386/avx2-vbroadcastsi128-1.c: Ditto. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197232 138bc75d-0d04-0410-961f-82ee72b054a4
2013-03-282013-03-28 Tejas Belagod <tejas.belagod@arm.com>Tejas Belagod
PR middle-end/56694 * g++.dg/torture/pr56694.C: Fix test case to build on bare-metal targets. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197203 138bc75d-0d04-0410-961f-82ee72b054a4
2013-03-25/cpPaolo Carlini
2013-03-25 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56722 * decl.c (cp_finish_decl): Check DECL_LANG_SPECIFIC before DECL_TEMPLATE_INSTANTIATION. /testsuite 2013-03-25 Paolo Carlini <paolo.carlini@oracle.com> PR c++/56722 * g++.dg/cpp0x/range-for23.C: New. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197065 138bc75d-0d04-0410-961f-82ee72b054a4
2013-03-252013-03-25 Richard Biener <rguenther@suse.de>Richard Biener
PR middle-end/56694 * tree-eh.c (lower_eh_must_not_throw): Strip BLOCKs from the must-not-throw stmt location. * g++.dg/torture/pr56694.C: New testcase. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch@197048 138bc75d-0d04-0410-961f-82ee72b054a4