- 02 Sep, 2014 9 commits
-
-
/cp 2014-09-02 Paolo Carlini <paolo.carlini@oracle.com> DR 1453 * class.c (check_field_decls): A class of literal type cannot have volatile non-static data members and base classes. (explain_non_literal_class): Update. /testsuite 2014-09-02 Paolo Carlini <paolo.carlini@oracle.com> DR 1453 * g++.dg/cpp0x/constexpr-volatile.C: New. * g++.dg/ext/is_literal_type2.C: Likewise. From-SVN: r214823
Paolo Carlini committed -
* Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, tree.def, and gimple.def From-SVN: r214822
Aldy Hernandez committed -
gcc/ * cilk-builtins.def (__cilkrts_cilk_for_32): New. (__cilkrts_cilk_for_64): Likewise. * cilk-common.c (declare_cilk_for_builtin): New function. (cilk_init_builtins): Declare __cilkrts_cilk_for_32 and __cilkrts_cilk_for_64 bultins. * cilk.h (enum cilk_tree_index): Added CILK_TI_F_LOOP_32 and CILK_TI_F_LOOP_64. (cilk_for_32_fndecl): New define. (cilk_for_64_fndecl): Likewise. * gimple-pretty-print.c (dump_gimple_omp_for): Correct hadling of GF_OMP_FOR_KIND_CILKFOR cases; Added NE_EXPR case. * gimple.h (enum gf_mask): Added GF_OMP_FOR_KIND_CILKFOR; adjusted GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_SIMD, GF_OMP_FOR_COMBINED, GF_OMP_FOR_COMBINED_INTO. * gimplify.c (gimplify_scan_omp_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ case. (gimplify_adjust_omp_clauses): Ditto. (gimplify_omp_for): Added CILK_FOR case. (gimplify_expr): Ditto. * omp-low.c: Include cilk.h. (extract_omp_for_data): Set appropriate kind for GF_OMP_FOR_KIND_CILKFOR; added check for GF_OMP_FOR_KIND_CILKFOR. (scan_sharing_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ cases. (create_omp_child_function_name): Added second argument to handle cilk_for case. (cilk_for_check_loop_diff_type): New function. (expand_cilk_for_call): Likewise. (expand_cilk_for): Likewise. (create_omp_child_function): Set cilk_for_count; handle the cases when it is true; call create_omp_child_function_name with second argument. (expand_omp_taskreg): Set is_cilk_for and handle cases when it's true. (expand_omp_for): Handle case of GF_OMP_FOR_KIND_CILKFOR. * tree-core.h (omp_clause_code): Added OMP_CLAUSE__CILK_FOR_COUNT_. * tree-nested.c (convert_nonlocal_omp_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ case. (convert_local_omp_clauses): Ditto. * tree-pretty-print.c (dump_omp_clause): Added OMP_CLAUSE__CILK_FOR_COUNT_ and OMP_CLAUSE_SCHEDULE_CILKFOR cases. (dump_generic_node): Added CILK_FOR case. * tree.c (omp_clause_num_ops): New element OMP_CLAUSE__CILK_FOR_COUNT_ (1). (omp_clause_code_name): New element _Cilk_for_count_. (walk_tree_1): Added OMP_CLAUSE__CILK_FOR_COUNT_ case. * tree.def: Add tree code for CILK_FOR. gcc/c/ * c-parser.c (c_parser_cilk_for): New function. (c_parser_cilk_grainsize): Likewise. (c_get_temp_regvar): Likewise. (c_parser_statement_after_labels): Added RID_CILK_FOR case. (c_parser_pragma): Added PRAGMA_CILK_GRAINSIZE case. (c_parser_omp_for_loop): Added CILK_FOR and CILK_SIMD checks. * c-typeck.c (c_finish_omp_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ case. gcc/cp/ * cp-cilkplus.c (cpp_validate_cilk_plus_loop_aux): Loc definition simplified. * parser.c (cp_parser_cilk_for): New function. (cp_parser_cilk_grainsize): Likewise. (cp_parser_statement): Added RID_CILK_FOR case. (cp_parser_omp_for_cond): Added CILK_FOR check. (cp_parser_omp_for_loop_init): Change function argument to accept tree_code instead just a bool flag; change the check to use that tree_code; check for initialization declaration in case of Cilk_for. (cp_parser_omp_for_loop): Added checks for CILK_FOR and RID_CILK_FOR; changed call to cp_parser_omp_for_loop_init according new arguments' list. (cp_parser_pragma): Added PRAGMA_CILK_GRAINSIZE case. * pt.c (tsubst_expr): Added CILK_FOR case. * semantics.c: Include convert.h. (finish_omp_clauses): Properly handle OMP_CLAUSE_SCHEDULE_CILKFOR case; added OMP_CLAUSE__CILK_FOR_COUNT_. (handle_omp_for_class_iterator): New argument lastp and its usage; added NE_EXPR case. (finish_omp_for): Changed call to handle_omp_for_class_iterator according new arguments' list; in case of Cilk_for save very first decl and create empty stmt_list block; use block to build correct statement tree. gcc/c-family/ * c-cilkplus.c (cilk_for_number_of_iterations): New function. * c-common.c (c_common_reswords): Added _Cilk_for. * c-common.h (enum rid): Added RID_CILK_FOR. (cilk_for_number_of_iterations): Add declaration. * c-omp.c (c_finish_omp_for): Added checks for CILK_SIMD and CILK_FOR. * c-pragma.c (init_pragma): Register "grainsize" pragma. * c-pragma.h (enum pragma_kind): Add PRAGMA_CILK_GRAINSIZE. gcc/testsuite/ * c-c++-common/cilk-plus/CK/cilk-fors.c: New test. * c-c++-common/cilk-plus/CK/cilk-for-2.c: New test. * c-c++-common/cilk-plus/CK/cilk-for-3.c: New test. * c-c++-common/cilk-plus/CK/cilk_for_errors.c: New test. * c-c++-common/cilk-plus/CK/cilk_for_grain.c: New test. * c-c++-common/cilk-plus/CK/cilk_for_grain_errors.c: New test. * c-c++-common/cilk-plus/CK/cilk_for_ptr_iter.c: New test. * c-c++-common/cilk-plus/CK/nested_cilk_for.c: New test. * g++.dg/cilk-plus/CK/cf3.cc: New test. * g++.dg/cilk-plus/CK/cilk-for-tplt.cc: New test. * g++.dg/cilk-plus/CK/for1.cc: New test. * g++.dg/cilk-plus/CK/stl_iter.cc: New test. * g++.dg/cilk-plus/CK/stl_rev_iter.cc: New test. * g++.dg/cilk-plus/CK/stl_test.cc: New test. Co-Authored-By: Balaji V. Iyer <balaji.v.iyer@intel.com> Co-Authored-By: Igor Zamyatin <igor.zamyatin@intel.com> From-SVN: r214818
Jakub Jelinek committed -
2014-09-02 Segher Boessenkool <segher@kernel.crashing.org> * config/rs6000/40x.md (ppc403-integer): Move "exts" to "no dot". (ppc403-compare): Add "exts with dot" case. * config/rs6000/440.md (ppc440-integer, ppc440-compare): As above. * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Ditto. * config/rs6000/601.md (ppc601-integer, ppc601-compare): Ditto. * config/rs6000/603.md (ppc603-integer, ppc603-compare): Ditto. * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Ditto. * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Ditto. * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Ditto. * config/rs6000/cell.md (cell-integer, cell-fast-cmp, cell-cmp-microcoded): Similarly. * config/rs6000/e300c2c3.md (ppce300c3_iu, ppce300c3_cmp): As before. * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Ditto. * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Ditto. * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Ditto. * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Ditto. * config/rs6000/power4.md (power4-integer, power4-compare): Ditto. * config/rs6000/power5.md (power5-integer, power5-compare): Ditto. * config/rs6000/power6.md (power6-exts): Add "no dot" condition. (power6-compare): Add "exts with dot" case. * config/rs6000/power7.md (power7-integer, power7-compare): As before. * config/rs6000/power8.md (power8-1cyc, power8-compare): Ditto. * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Ditto. * config/rs6000/predicates.md (lwa_operand): Don't allow memory if avoiding Cell microcode. * config/rs6000/rs6000.c (rs6000_adjust_cost): Handle exts+dot case. (is_cracked_insn): Ditto. (insn_must_be_first_in_group): Ditto. * config/rs6000/rs6000.md (dot): Adjust comment. (cell_micro): Handle exts+dot. (extendqidi2, extendhidi2, extendsidi2, *extendsidi2_lfiwax, *extendsidi2_nocell, *extendsidi2_nocell, extendqisi2, extendqihi2, extendhisi2, 16 anonymous instructions, and 12 splitters): Delete. (extendqi<mode>2, *extendqi<mode>2_dot, *extendqi<mode>2_dot2, extendhi<mode>2, *extendhi<mode>2, *extendhi<mode>2_noload, *extendhi<mode>2_dot, *extendhi<mode>2_dot2, extendsi<mode>2, *extendsi<mode>2_dot, *extendsi<mode>2_dot2): New. From-SVN: r214816
Segher Boessenkool committed -
2014-09-02 Segher Boessenkool <segher@kernel.crashing.org> * config/rs6000/rs6000.md (QHSI): Delete. (EXTQI, EXTHI, EXTSI): New mode iterators. (zero_extend<mode>di2, *zero_extend<mode>di2_internal1, *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3, *zero_extendsidi2_lfiwzx, zero_extendqisi2, zero_extendhisi2, 9 anonymous instructions, and 8 splitters): Delete. (zero_extendqi<mode>2, *zero_extendqi<mode>2_dot, *zero_extendqi<mode>2_dot2, zero_extendhi<mode>2, *zero_extendhi<mode>2_dot, *zero_extendhi<mode>2_dot2, zero_extendsi<mode>2, *zero_extendsi<mode>2_dot, *zero_extendsi<mode>2_dot2): New. From-SVN: r214815
Segher Boessenkool committed -
2014-09-02 Segher Boessenkool <segher@kernel.crashing.org> * config/rs6000/rs6000.md (any_extend): New code iterator. (u, su): New code attributes. (dmode, DMODE): New mode attributes. (<su>mul<mode>3_highpart): New. (*<su>mul<mode>3_highpart): New. (<su>mulsi3_highpart_le): New. (<su>muldi3_highpart_le): New. (<su>mulsi3_highpart_64): New. (<u>mul<mode><dmode>3): New. (mulsidi3, umulsidi3, smulsi3_highpart, umulsi3_highpart, and two splitters): Delete. (mulditi3, umulditi3, smuldi3_highpart, umuldi3_highpart, and two splitters): Delete. From-SVN: r214814
Segher Boessenkool committed -
* config/rs6000/rs6000.md (mulsi3, *mulsi3_internal1, *mulsi3_internal2, and two splitters): Delete. (muldi3, *muldi3_internal1, *muldi3_internal2, and two splitters): Delete. (mul<mode>3, mul<mode>3_dot, mul<mode>3_dot2): New. From-SVN: r214813
Segher Boessenkool committed -
re PR middle-end/62695 (internal compiler error: in get_constraint_for_component_ref, at tree-ssa-structalias.c:3189) 2014-09-02 Richard Biener <rguenther@suse.de> PR tree-optimization/62695 * tree-ssa-structalias.c (find_func_clobbers): Add missing vector truncate. * gfortran.dg/pr62695.f90: New testcase. From-SVN: r214810
Richard Biener committed -
From-SVN: r214808
GCC Administrator committed
-
- 01 Sep, 2014 19 commits
-
-
gcc/ PR target/62312 * config/sh/sh.md (*cmp_div0s_0): Add missing constraints. gcc/testsuite/ PR target/62312 * gcc.c-torture/compile/pr62312.c: New. From-SVN: r214804
Oleg Endo committed -
Change the bootstrap-lto config file to use slim (non fat) LTO.. Speeds up the LTO bootstrap by ~18% on a 4 core system. This requires using gcc-ar/ranlib in post stage 1 builds, so these are passed to all sub builds. config/: 2014-09-01 Andi Kleen <ak@linux.intel.com> * bootstrap-lto.mk: Implement slim bootstrap. /: 2014-09-01 Andi Kleen <ak@linux.intel.com> * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add LTO_EXPORTS. POSTSTAGE1_FLAGS_TO_PASS): Add LTO_FLAGS_TO_PASS. * Makefile.in: Regenerate. From-SVN: r214801
Andi Kleen committed -
To use gcc-{ar,ranlib} for boot strap we need to add a -B option to the tool. Since ar has weird and unusual argument conventions implement the code by hand instead of using any libraries. gcc/: 2014-09-01 Andi Kleen <ak@linux.intel.com> * file-find.c (add_prefix_begin): Add. (do_add_prefix): Rename from add_prefix with first argument. (add_prefix): Add new wrapper. * file-find.h (add_prefix_begin): Add. * gcc-ar.c (main): Support -B option. From-SVN: r214800
Andi Kleen committed -
From-SVN: r214798
Maciej W. Rozycki committed -
* lib/target-supports.exp (check_effective_target_arm_cortex_m): Return right away if !arm*-*-*. From-SVN: r214797
Maciej W. Rozycki committed -
2014-09-01 Segher Boessenkool <segher@kernel.crashing.org> * genemit.c: Include dumpfile.h. (gen_split): Print name of splitter function to dump file. From-SVN: r214796
Segher Boessenkool committed -
tree-ssa-struct-aliases.c (find_func_aliases_for_builtin_call): Use stack auto_vecs for constraint expressions. 2014-09-01 Richard Biener <rguenther@suse.de> * tree-ssa-struct-aliases.c (find_func_aliases_for_builtin_call): Use stack auto_vecs for constraint expressions. (find_func_aliases_for_call): Likewise. (find_func_aliases): Likewise. (find_func_clobbers): Likewise. From-SVN: r214795
Richard Biener committed -
2014-09-01 Richard Biener <rguenther@suse.de> * tree-ssa-pre.c (phi_translate_1): Avoid re-allocating the operands vector in most cases. Remove redundant code. From-SVN: r214794
Richard Biener committed -
* gcc.c-torture/unsorted/386.c: Move to ... * gcc.c-torture/compile/386.c: ... here. * gcc.c-torture/unsorted/86.c: Move to ... * gcc.c-torture/compile/86.c: ... here. * gcc.c-torture/unsorted/a1.c: Move to ... * gcc.c-torture/compile/a1.c: ... here. * gcc.c-torture/unsorted/a3.c: Move to ... * gcc.c-torture/compile/a3.c: ... here. * gcc.c-torture/unsorted/aaa.c: Move to ... * gcc.c-torture/compile/aaa.c: ... here. * gcc.c-torture/unsorted/aa.c: Move to ... * gcc.c-torture/compile/aa.c: ... here. * gcc.c-torture/unsorted/abs.c: Move to ... * gcc.c-torture/compile/abs.c: ... here. * gcc.c-torture/unsorted/a.c: Move to ... * gcc.c-torture/compile/a.c: ... here. * gcc.c-torture/unsorted/ac.c: Move to ... * gcc.c-torture/compile/ac.c: ... here. * gcc.c-torture/unsorted/acc.c: Move to ... * gcc.c-torture/compile/acc.c: ... here. * gcc.c-torture/unsorted/add386.c: Move to ... * gcc.c-torture/compile/add386.c: ... here. * gcc.c-torture/unsorted/add.c: Move to ... * gcc.c-torture/compile/add.c: ... here. * gcc.c-torture/unsorted/addcc.c: Move to ... * gcc.c-torture/compile/addcc.c: ... here. * gcc.c-torture/unsorted/andm.c: Move to ... * gcc.c-torture/compile/andm.c: ... here. * gcc.c-torture/unsorted/andmem.c: Move to ... * gcc.c-torture/compile/andmem.c: ... here. * gcc.c-torture/unsorted/andn.c: Move to ... * gcc.c-torture/compile/andn.c: ... here. * gcc.c-torture/unsorted/andok.c: Move to ... * gcc.c-torture/compile/andok.c: ... here. * gcc.c-torture/unsorted/andsi.c: Move to ... * gcc.c-torture/compile/andsi.c: ... here. * gcc.c-torture/unsorted/andsparc.c: Move to ... * gcc.c-torture/compile/andsparc.c: ... here. * gcc.c-torture/unsorted/aos.c: Move to ... * gcc.c-torture/compile/aos.c: ... here. * gcc.c-torture/unsorted/arr.c: Move to ... * gcc.c-torture/compile/arr.c: ... here. * gcc.c-torture/unsorted/as.c: Move to ... * gcc.c-torture/compile/as.c: ... here. * gcc.c-torture/unsorted/ase.c: Move to ... * gcc.c-torture/compile/ase.c: ... here. * gcc.c-torture/unsorted/b1.c: Move to ... * gcc.c-torture/compile/b1.c: ... here. * gcc.c-torture/unsorted/b2.c: Move to ... * gcc.c-torture/compile/b2.c: ... here. * gcc.c-torture/unsorted/b3.c: Move to ... * gcc.c-torture/compile/b3.c: ... here. * gcc.c-torture/unsorted/b88.c: Move to ... * gcc.c-torture/compile/b88.c: ... here. * gcc.c-torture/unsorted/bad.c: Move to ... * gcc.c-torture/compile/bad.c: ... here. * gcc.c-torture/unsorted/band.c: Move to ... * gcc.c-torture/compile/band.c: ... here. * gcc.c-torture/unsorted/bb0.c: Move to ... * gcc.c-torture/compile/bb0.c: ... here. * gcc.c-torture/unsorted/bb1.c: Move to ... * gcc.c-torture/compile/bb1.c: ... here. * gcc.c-torture/unsorted/bbb.c: Move to ... * gcc.c-torture/compile/bbb.c: ... here. * gcc.c-torture/unsorted/b.c: Move to ... * gcc.c-torture/compile/b.c: ... here. * gcc.c-torture/unsorted/bc.c: Move to ... * gcc.c-torture/compile/bc.c: ... here. * gcc.c-torture/unsorted/bcopy.c: Move to ... * gcc.c-torture/compile/bcopy.c: ... here. * gcc.c-torture/unsorted/bf.c: Move to ... * gcc.c-torture/compile/bf.c: ... here. * gcc.c-torture/unsorted/bfins.c: Move to ... * gcc.c-torture/compile/bfins.c: ... here. * gcc.c-torture/unsorted/bfx.c: Move to ... * gcc.c-torture/compile/bfx.c: ... here. * gcc.c-torture/unsorted/bge.c: Move to ... * gcc.c-torture/compile/bge.c: ... here. * gcc.c-torture/unsorted/bit.c: Move to ... * gcc.c-torture/compile/bit.c: ... here. * gcc.c-torture/unsorted/bitf.c: Move to ... * gcc.c-torture/compile/bitf.c: ... here. * gcc.c-torture/unsorted/bitw.c: Move to ... * gcc.c-torture/compile/bitw.c: ... here. * gcc.c-torture/unsorted/blk.c: Move to ... * gcc.c-torture/compile/blk.c: ... here. * gcc.c-torture/unsorted/bt386.c: Move to ... * gcc.c-torture/compile/bt386.c: ... here. * gcc.c-torture/unsorted/bt.c: Move to ... * gcc.c-torture/compile/bt.c: ... here. * gcc.c-torture/unsorted/BUG11.c: Move to ... * gcc.c-torture/compile/BUG11.c: ... here. * gcc.c-torture/unsorted/BUG12.c: Move to ... * gcc.c-torture/compile/BUG12.c: ... here. * gcc.c-torture/unsorted/BUG13.c: Move to ... * gcc.c-torture/compile/BUG13.c: ... here. * gcc.c-torture/unsorted/BUG16.c: Move to ... * gcc.c-torture/compile/BUG16.c: ... here. * gcc.c-torture/unsorted/BUG17.c: Move to ... * gcc.c-torture/compile/BUG17.c: ... here. * gcc.c-torture/unsorted/BUG18.c: Move to ... * gcc.c-torture/compile/BUG18.c: ... here. * gcc.c-torture/unsorted/BUG1.c: Move to ... * gcc.c-torture/compile/BUG1.c: ... here. * gcc.c-torture/unsorted/BUG21.c: Move to ... * gcc.c-torture/compile/BUG21.c: ... here. * gcc.c-torture/unsorted/BUG22.c: Move to ... * gcc.c-torture/compile/BUG22.c: ... here. * gcc.c-torture/unsorted/BUG23.c: Move to ... * gcc.c-torture/compile/BUG23.c: ... here. * gcc.c-torture/unsorted/BUG24.c: Move to ... * gcc.c-torture/compile/BUG24.c: ... here. * gcc.c-torture/unsorted/BUG25.c: Move to ... * gcc.c-torture/compile/BUG25.c: ... here. * gcc.c-torture/unsorted/BUG2.c: Move to ... * gcc.c-torture/compile/BUG2.c: ... here. * gcc.c-torture/unsorted/BUG3.c: Move to ... * gcc.c-torture/compile/BUG3.c: ... here. * gcc.c-torture/unsorted/BUG4.c: Move to ... * gcc.c-torture/compile/BUG4.c: ... here. * gcc.c-torture/unsorted/BUG5.c: Move to ... * gcc.c-torture/compile/BUG5.c: ... here. * gcc.c-torture/unsorted/BUG6.c: Move to ... * gcc.c-torture/compile/BUG6.c: ... here. * gcc.c-torture/unsorted/bug.c: Move to ... * gcc.c-torture/compile/bug.c: ... here. * gcc.c-torture/unsorted/bugc.c: Move to ... * gcc.c-torture/compile/bugc.c: ... here. * gcc.c-torture/unsorted/buns.c: Move to ... * gcc.c-torture/compile/buns.c: ... here. * gcc.c-torture/unsorted/bx.c: Move to ... * gcc.c-torture/compile/bx.c: ... here. * gcc.c-torture/unsorted/c1.c: Move to ... * gcc.c-torture/compile/c1.c: ... here. * gcc.c-torture/unsorted/c2.c: Move to ... * gcc.c-torture/compile/c2.c: ... here. * gcc.c-torture/unsorted/call386.c: Move to ... * gcc.c-torture/compile/call386.c: ... here. * gcc.c-torture/unsorted/call.c: Move to ... * gcc.c-torture/compile/call.c: ... here. * gcc.c-torture/unsorted/callind.c: Move to ... * gcc.c-torture/compile/callind.c: ... here. * gcc.c-torture/unsorted/c.c: Move to ... * gcc.c-torture/compile/c.c: ... here. * gcc.c-torture/unsorted/cc.c: Move to ... * gcc.c-torture/compile/cc.c: ... here. * gcc.c-torture/unsorted/charmtst.c: Move to ... * gcc.c-torture/compile/charmtst.c: ... here. * gcc.c-torture/unsorted/cmb.c: Move to ... * gcc.c-torture/compile/cmb.c: ... here. * gcc.c-torture/unsorted/cmp.c: Move to ... * gcc.c-torture/compile/cmp.c: ... here. * gcc.c-torture/unsorted/cmphi.c: Move to ... * gcc.c-torture/compile/cmphi.c: ... here. * gcc.c-torture/unsorted/cmpsi386.c: Move to ... * gcc.c-torture/compile/cmpsi386.c: ... here. * gcc.c-torture/unsorted/cmul.c: Move to ... * gcc.c-torture/compile/cmul.c: ... here. * gcc.c-torture/unsorted/cn1.c: Move to ... * gcc.c-torture/compile/cn1.c: ... here. * gcc.c-torture/unsorted/comb.c: Move to ... * gcc.c-torture/compile/comb.c: ... here. * gcc.c-torture/unsorted/consec.c: Move to ... * gcc.c-torture/compile/consec.c: ... here. * gcc.c-torture/unsorted/const.c: Move to ... * gcc.c-torture/compile/const.c: ... here. * gcc.c-torture/unsorted/conv.c: Move to ... * gcc.c-torture/compile/conv.c: ... here. * gcc.c-torture/unsorted/conv_tst.c: Move to ... * gcc.c-torture/compile/conv_tst.c: ... here. * gcc.c-torture/unsorted/cp.c: Move to ... * gcc.c-torture/compile/cp.c: ... here. * gcc.c-torture/unsorted/csebug.c: Move to ... * gcc.c-torture/compile/csebug.c: ... here. * gcc.c-torture/unsorted/cvt.c: Move to ... * gcc.c-torture/compile/cvt.c: ... here. * gcc.c-torture/unsorted/dblbug.c: Move to ... * gcc.c-torture/compile/dblbug.c: ... here. * gcc.c-torture/unsorted/dbl_parm.c: Move to ... * gcc.c-torture/compile/dbl_parm.c: ... here. * gcc.c-torture/unsorted/d.c: Move to ... * gcc.c-torture/compile/d.c: ... here. * gcc.c-torture/unsorted/ddd.c: Move to ... * gcc.c-torture/compile/ddd.c: ... here. * gcc.c-torture/unsorted/dead.c: Move to ... * gcc.c-torture/compile/dead.c: ... here. * gcc.c-torture/unsorted/delay.c: Move to ... * gcc.c-torture/compile/delay.c: ... here. * gcc.c-torture/unsorted/DFcmp.c: Move to ... * gcc.c-torture/compile/DFcmp.c: ... here. Require int32plus. * gcc.c-torture/unsorted/di.c: Move to ... * gcc.c-torture/compile/di.c: ... here. * gcc.c-torture/unsorted/dic.c: Move to ... * gcc.c-torture/compile/dic.c: ... here. * gcc.c-torture/unsorted/dilayout.c: Move to ... * gcc.c-torture/compile/dilayout.c: ... here. * gcc.c-torture/unsorted/dimove.c: Move to ... * gcc.c-torture/compile/dimove.c: ... here. * gcc.c-torture/unsorted/dimul.c: Move to ... * gcc.c-torture/compile/dimul.c: ... here. * gcc.c-torture/unsorted/div.c: Move to ... * gcc.c-torture/compile/div.c: ... here. * gcc.c-torture/unsorted/divdf.c: Move to ... * gcc.c-torture/compile/divdf.c: ... here. * gcc.c-torture/unsorted/dm.c: Move to ... * gcc.c-torture/compile/dm.c: ... here. * gcc.c-torture/unsorted/dshift.c: Move to ... * gcc.c-torture/compile/dshift.c: ... here. * gcc.c-torture/unsorted/e.c: Move to ... * gcc.c-torture/compile/e.c: ... here. * gcc.c-torture/unsorted/ex.c: Move to ... * gcc.c-torture/compile/ex.c: ... here. * gcc.c-torture/unsorted/ext.c: Move to ... * gcc.c-torture/compile/ext.c: ... here. * gcc.c-torture/unsorted/f1.c: Move to ... * gcc.c-torture/compile/f1.c: ... here. * gcc.c-torture/unsorted/f2.c: Move to ... * gcc.c-torture/compile/f2.c: ... here. * gcc.c-torture/unsorted/fdmul.c: Move to ... * gcc.c-torture/compile/fdmul.c: ... here. * gcc.c-torture/unsorted/float.c: Move to ... * gcc.c-torture/compile/float.c: ... here. * gcc.c-torture/unsorted/flo.c: Move to ... * gcc.c-torture/compile/flo.c: ... here. * gcc.c-torture/unsorted/flt_const.c: Move to ... * gcc.c-torture/compile/flt_const.c: ... here. * gcc.c-torture/unsorted/fnul.c: Move to ... * gcc.c-torture/compile/fnul.c: ... here. * gcc.c-torture/unsorted/foo.c: Move to ... * gcc.c-torture/compile/foo.c: ... here. * gcc.c-torture/unsorted/forgetcc.c: Move to ... * gcc.c-torture/compile/forgetcc.c: ... here. * gcc.c-torture/unsorted/fq.c: Move to ... * gcc.c-torture/compile/fq.c: ... here. * gcc.c-torture/unsorted/g.c: Move to ... * gcc.c-torture/compile/g.c: ... here. * gcc.c-torture/unsorted/gen_tst.c: Move to ... * gcc.c-torture/compile/gen_tst.c: ... here. * gcc.c-torture/unsorted/glob.c: Move to ... * gcc.c-torture/compile/glob.c: ... here. * gcc.c-torture/unsorted/gronk.c: Move to ... * gcc.c-torture/compile/gronk.c: ... here. * gcc.c-torture/unsorted/hibug.c: Move to ... * gcc.c-torture/compile/hibug.c: ... here. * gcc.c-torture/unsorted/hi.c: Move to ... * gcc.c-torture/compile/hi.c: ... here. * gcc.c-torture/unsorted/HIcmp.c: Move to ... * gcc.c-torture/compile/HIcmp.c: ... here. * gcc.c-torture/unsorted/HIset.c: Move to ... * gcc.c-torture/compile/HIset.c: ... here. * gcc.c-torture/unsorted/i.c: Move to ... * gcc.c-torture/compile/i.c: ... here. * gcc.c-torture/unsorted/i++.c: Move to ... * gcc.c-torture/compile/i++.c: ... here. * gcc.c-torture/unsorted/ic.c: Move to ... * gcc.c-torture/compile/ic.c: ... here. * gcc.c-torture/unsorted/icmp.c: Move to ... * gcc.c-torture/compile/icmp.c: ... here. * gcc.c-torture/unsorted/ifreg.c: Move to ... * gcc.c-torture/compile/ifreg.c: ... here. * gcc.c-torture/unsorted/imm.c: Move to ... * gcc.c-torture/compile/imm.c: ... here. * gcc.c-torture/unsorted/isinf.c: Move to ... * gcc.c-torture/compile/isinf.c: ... here. * gcc.c-torture/unsorted/jmp.c: Move to ... * gcc.c-torture/compile/jmp.c: ... here. * gcc.c-torture/unsorted/jumptab.c: Move to ... * gcc.c-torture/compile/jumptab.c: ... here. * gcc.c-torture/unsorted/layout.c: Move to ... * gcc.c-torture/compile/layout.c: ... here. * gcc.c-torture/unsorted/lbug.c: Move to ... * gcc.c-torture/compile/lbug.c: ... here. * gcc.c-torture/unsorted/l.c: Move to ... * gcc.c-torture/compile/l.c: ... here. * gcc.c-torture/unsorted/ll1.c: Move to ... * gcc.c-torture/compile/ll1.c: ... here. * gcc.c-torture/unsorted/llbug.c: Move to ... * gcc.c-torture/compile/llbug.c: ... here. * gcc.c-torture/unsorted/lll.c: Move to ... * gcc.c-torture/compile/lll.c: ... here. * gcc.c-torture/unsorted/load8.c: Move to ... * gcc.c-torture/compile/load8.c: ... here. * gcc.c-torture/unsorted/loadhicc.c: Move to ... * gcc.c-torture/compile/loadhicc.c: ... here. * gcc.c-torture/unsorted/log2.c: Move to ... * gcc.c-torture/compile/log2.c: ... here. * gcc.c-torture/unsorted/logic.c: Move to ... * gcc.c-torture/compile/logic.c: ... here. * gcc.c-torture/unsorted/loop-1.c: Move to ... * gcc.c-torture/compile/loop-1.c: ... here. * gcc.c-torture/unsorted/loop386.c: Move to ... * gcc.c-torture/compile/loop386.c: ... here. * gcc.c-torture/unsorted/lop.c: Move to ... * gcc.c-torture/compile/lop.c: ... here. * gcc.c-torture/unsorted/m1.c: Move to ... * gcc.c-torture/compile/m1.c: ... here. * gcc.c-torture/unsorted/m2.c: Move to ... * gcc.c-torture/compile/m2.c: ... here. * gcc.c-torture/unsorted/m5.c: Move to ... * gcc.c-torture/compile/m5.c: ... here. * gcc.c-torture/unsorted/m68.c: Move to ... * gcc.c-torture/compile/m68.c: ... here. * gcc.c-torture/unsorted/mbyte.c: Move to ... * gcc.c-torture/compile/mbyte.c: ... here. * gcc.c-torture/unsorted/mchar.c: Move to ... * gcc.c-torture/compile/mchar.c: ... here. * gcc.c-torture/unsorted/mcmp.c: Move to ... * gcc.c-torture/compile/mcmp.c: ... here. * gcc.c-torture/unsorted/mdouble.c: Move to ... * gcc.c-torture/compile/mdouble.c: ... here. * gcc.c-torture/unsorted/memtst.c: Move to ... * gcc.c-torture/compile/memtst.c: ... here. * gcc.c-torture/unsorted/miscomp.c: Move to ... * gcc.c-torture/compile/miscomp.c: ... here. * gcc.c-torture/unsorted/mm.c: Move to ... * gcc.c-torture/compile/mm.c: ... here. * gcc.c-torture/unsorted/mod.c: Move to ... * gcc.c-torture/compile/mod.c: ... here. * gcc.c-torture/unsorted/modcc.c: Move to ... * gcc.c-torture/compile/modcc.c: ... here. * gcc.c-torture/unsorted/move.c: Move to ... * gcc.c-torture/compile/move.c: ... here. * gcc.c-torture/unsorted/move_qhi.c: Move to ... * gcc.c-torture/compile/move_qhi.c: ... here. * gcc.c-torture/unsorted/mregtst.c: Move to ... * gcc.c-torture/compile/mregtst.c: ... here. * gcc.c-torture/unsorted/msp.c: Move to ... * gcc.c-torture/compile/msp.c: ... here. * gcc.c-torture/unsorted/mtst.c: Move to ... * gcc.c-torture/compile/mtst.c: ... here. * gcc.c-torture/unsorted/mu.c: Move to ... * gcc.c-torture/compile/mu.c: ... here. * gcc.c-torture/unsorted/mul.c: Move to ... * gcc.c-torture/compile/mul.c: ... here. * gcc.c-torture/unsorted/mword1.c: Move to ... * gcc.c-torture/compile/mword1.c: ... here. * gcc.c-torture/unsorted/mword.c: Move to ... * gcc.c-torture/compile/mword.c: ... here. * gcc.c-torture/unsorted/n1.c: Move to ... * gcc.c-torture/compile/n1.c: ... here. * gcc.c-torture/unsorted/nand.c: Move to ... * gcc.c-torture/compile/nand.c: ... here. * gcc.c-torture/unsorted/n.c: Move to ... * gcc.c-torture/compile/n.c: ... here. * gcc.c-torture/unsorted/neg.c: Move to ... * gcc.c-torture/compile/neg.c: ... here. * gcc.c-torture/unsorted/o.c: Move to ... * gcc.c-torture/compile/o.c: ... here. * gcc.c-torture/unsorted/omit.c: Move to ... * gcc.c-torture/compile/omit.c: ... here. * gcc.c-torture/unsorted/opout.c: Move to ... * gcc.c-torture/compile/opout.c: ... here. * gcc.c-torture/unsorted/opt.c: Move to ... * gcc.c-torture/compile/opt.c: ... here. * gcc.c-torture/unsorted/or386.c: Move to ... * gcc.c-torture/compile/or386.c: ... here. * gcc.c-torture/unsorted/or.c: Move to ... * gcc.c-torture/compile/or.c: ... here. * gcc.c-torture/unsorted/parms.c: Move to ... * gcc.c-torture/compile/parms.c: ... here. * gcc.c-torture/unsorted/pass.c: Move to ... * gcc.c-torture/compile/pass.c: ... here. * gcc.c-torture/unsorted/p.c: Move to ... * gcc.c-torture/compile/p.c: ... here. * gcc.c-torture/unsorted/pmt.c: Move to ... * gcc.c-torture/compile/pmt.c: ... here. * gcc.c-torture/unsorted/poor.c: Move to ... * gcc.c-torture/compile/poor.c: ... here. * gcc.c-torture/unsorted/pp.c: Move to ... * gcc.c-torture/compile/pp.c: ... here. * gcc.c-torture/unsorted/pret-arg.c: Move to ... * gcc.c-torture/compile/pret-arg.c: ... here. * gcc.c-torture/unsorted/pyr2.c: Move to ... * gcc.c-torture/compile/pyr2.c: ... here. * gcc.c-torture/unsorted/PYRBUG.c: Move to ... * gcc.c-torture/compile/PYRBUG.c: ... here. * gcc.c-torture/unsorted/pyr.c: Move to ... * gcc.c-torture/compile/pyr.c: ... here. * gcc.c-torture/unsorted/q.c: Move to ... * gcc.c-torture/compile/q.c: ... here. * gcc.c-torture/unsorted/QIcmp.c: Move to ... * gcc.c-torture/compile/QIcmp.c: ... here. * gcc.c-torture/unsorted/QIset.c: Move to ... * gcc.c-torture/compile/QIset.c: ... here. * gcc.c-torture/unsorted/r1.c: Move to ... * gcc.c-torture/compile/r1.c: ... here. * gcc.c-torture/unsorted/r.c: Move to ... * gcc.c-torture/compile/r.c: ... here. * gcc.c-torture/unsorted/rel.c: Move to ... * gcc.c-torture/compile/rel.c: ... here. * gcc.c-torture/unsorted/rmsc.c: Move to ... * gcc.c-torture/compile/rmsc.c: ... here. * gcc.c-torture/unsorted/round.c: Move to ... * gcc.c-torture/compile/round.c: ... here. * gcc.c-torture/unsorted/run.c: Move to ... * gcc.c-torture/compile/run.c: ... here. * gcc.c-torture/unsorted/sar.c: Move to ... * gcc.c-torture/compile/sar.c: ... here. * gcc.c-torture/unsorted/s.c: Move to ... * gcc.c-torture/compile/s.c: ... here. * gcc.c-torture/unsorted/scal.c: Move to ... * gcc.c-torture/compile/scal.c: ... here. * gcc.c-torture/unsorted/sc.c: Move to ... * gcc.c-torture/compile/sc.c: ... here. * gcc.c-torture/unsorted/scc.c: Move to ... * gcc.c-torture/compile/scc.c: ... here. * gcc.c-torture/unsorted/scond.c: Move to ... * gcc.c-torture/compile/scond.c: ... here. * gcc.c-torture/unsorted/selfrec.c: Move to ... * gcc.c-torture/compile/selfrec.c: ... here. * gcc.c-torture/unsorted/seq.c: Move to ... * gcc.c-torture/compile/seq.c: ... here. * gcc.c-torture/unsorted/set386.c: Move to ... * gcc.c-torture/compile/set386.c: ... here. * gcc.c-torture/unsorted/set88.c: Move to ... * gcc.c-torture/compile/set88.c: ... here. * gcc.c-torture/unsorted/SFset.c: Move to ... * gcc.c-torture/compile/SFset.c: ... here. Require int32plus. * gcc.c-torture/unsorted/shand.c: Move to ... * gcc.c-torture/compile/shand.c: ... here. * gcc.c-torture/unsorted/sh.c: Move to ... * gcc.c-torture/compile/sh.c: ... here. * gcc.c-torture/unsorted/shft.c: Move to ... * gcc.c-torture/compile/shft.c: ... here. * gcc.c-torture/unsorted/shift.c: Move to ... * gcc.c-torture/compile/shift.c: ... here. * gcc.c-torture/unsorted/shloop.c: Move to ... * gcc.c-torture/compile/shloop.c: ... here. * gcc.c-torture/unsorted/shm.c: Move to ... * gcc.c-torture/compile/shm.c: ... here. * gcc.c-torture/unsorted/SIcmp.c: Move to ... * gcc.c-torture/compile/SIcmp.c: ... here. * gcc.c-torture/unsorted/signext2.c: Move to ... * gcc.c-torture/compile/signext2.c: ... here. * gcc.c-torture/unsorted/signext.c: Move to ... * gcc.c-torture/compile/signext.c: ... here. * gcc.c-torture/unsorted/sim.c: Move to ... * gcc.c-torture/compile/sim.c: ... here. * gcc.c-torture/unsorted/simple.c: Move to ... * gcc.c-torture/compile/simple.c: ... here. * gcc.c-torture/unsorted/SIset.c: Move to ... * gcc.c-torture/compile/SIset.c: ... here. * gcc.c-torture/unsorted/sne.c: Move to ... * gcc.c-torture/compile/sne.c: ... here. * gcc.c-torture/unsorted/sound.c: Move to ... * gcc.c-torture/compile/sound.c: ... here. * gcc.c-torture/unsorted/sparcbug.c: Move to ... * gcc.c-torture/compile/sparcbug.c: ... here. * gcc.c-torture/unsorted/speed.c: Move to ... * gcc.c-torture/compile/speed.c: ... here. * gcc.c-torture/unsorted/stor.c: Move to ... * gcc.c-torture/compile/stor.c: ... here. * gcc.c-torture/unsorted/store0.c: Move to ... * gcc.c-torture/compile/store0.c: ... here. * gcc.c-torture/unsorted/storecc.c: Move to ... * gcc.c-torture/compile/storecc.c: ... here. * gcc.c-torture/unsorted/str.c: Move to ... * gcc.c-torture/compile/str.c: ... here. * gcc.c-torture/unsorted/stru.c: Move to ... * gcc.c-torture/compile/stru.c: ... here. * gcc.c-torture/unsorted/structret.c: Move to ... * gcc.c-torture/compile/structret.c: ... here. * gcc.c-torture/unsorted/stuct.c: Move to ... * gcc.c-torture/compile/stuct.c: ... here. * gcc.c-torture/unsorted/sub32.c: Move to ... * gcc.c-torture/compile/sub32.c: ... here. * gcc.c-torture/unsorted/subcc.c: Move to ... * gcc.c-torture/compile/subcc.c: ... here. * gcc.c-torture/unsorted/subcse.c: Move to ... * gcc.c-torture/compile/subcse.c: ... here. * gcc.c-torture/unsorted/sym.c: Move to ... * gcc.c-torture/compile/sym.c: ... here. * gcc.c-torture/unsorted/symconst.c: Move to ... * gcc.c-torture/compile/symconst.c: ... here. * gcc.c-torture/unsorted/t.c: Move to ... * gcc.c-torture/compile/t.c: ... here. * gcc.c-torture/unsorted/test.c: Move to ... * gcc.c-torture/compile/test.c: ... here. * gcc.c-torture/unsorted/test-flow.c: Move to ... * gcc.c-torture/compile/test-flow.c: ... here. * gcc.c-torture/unsorted/test-loop.c: Move to ... * gcc.c-torture/compile/test-loop.c: ... here. * gcc.c-torture/unsorted/time.c: Move to ... * gcc.c-torture/compile/time.c: ... here. * gcc.c-torture/unsorted/tmp.c: Move to ... * gcc.c-torture/compile/tmp.c: ... here. * gcc.c-torture/unsorted/trivial.c: Move to ... * gcc.c-torture/compile/trivial.c: ... here. * gcc.c-torture/unsorted/trunc.c: Move to ... * gcc.c-torture/compile/trunc.c: ... here. * gcc.c-torture/unsorted/u.c: Move to ... * gcc.c-torture/compile/u.c: ... here. * gcc.c-torture/unsorted/udconvert.c: Move to ... * gcc.c-torture/compile/udconvert.c: ... here. * gcc.c-torture/unsorted/udivmod4.c: Move to ... * gcc.c-torture/compile/udivmod4.c: ... here. * gcc.c-torture/unsorted/UHIcmp.c: Move to ... * gcc.c-torture/compile/UHIcmp.c: ... here. * gcc.c-torture/unsorted/uns.c: Move to ... * gcc.c-torture/compile/uns.c: ... here. * gcc.c-torture/unsorted/uns_tst.c: Move to ... * gcc.c-torture/compile/uns_tst.c: ... here. * gcc.c-torture/unsorted/UQIcmp.c: Move to ... * gcc.c-torture/compile/UQIcmp.c: ... here. * gcc.c-torture/unsorted/USIcmp.c: Move to ... * gcc.c-torture/compile/USIcmp.c: ... here. * gcc.c-torture/unsorted/uuarg.c: Move to ... * gcc.c-torture/compile/uuarg.c: ... here. * gcc.c-torture/unsorted/v.c: Move to ... * gcc.c-torture/compile/v.c: ... here. * gcc.c-torture/unsorted/w.c: Move to ... * gcc.c-torture/compile/w.c: ... here. * gcc.c-torture/unsorted/ww.c: Move to ... * gcc.c-torture/compile/ww.c: ... here. * gcc.c-torture/unsorted/xb.c: Move to ... * gcc.c-torture/compile/xb.c: ... here. * gcc.c-torture/unsorted/xbg.c: Move to ... * gcc.c-torture/compile/xbg.c: ... here. * gcc.c-torture/unsorted/x.c: Move to ... * gcc.c-torture/compile/x.c: ... here. * gcc.c-torture/unsorted/xc.c: Move to ... * gcc.c-torture/compile/xc.c: ... here. * gcc.c-torture/unsorted/xcsebug.c: Move to ... * gcc.c-torture/compile/xcsebug.c: ... here. * gcc.c-torture/unsorted/xdi.c: Move to ... * gcc.c-torture/compile/xdi.c: ... here. * gcc.c-torture/unsorted/xfoo.c: Move to ... * gcc.c-torture/compile/xfoo.c: ... here. * gcc.c-torture/unsorted/xi.c: Move to ... * gcc.c-torture/compile/xi.c: ... here. * gcc.c-torture/unsorted/xlop.c: Move to ... * gcc.c-torture/compile/xlop.c: ... here. * gcc.c-torture/unsorted/xmtst.c: Move to ... * gcc.c-torture/compile/xmtst.c: ... here. * gcc.c-torture/unsorted/xneg.c: Move to ... * gcc.c-torture/compile/xneg.c: ... here. * gcc.c-torture/unsorted/xopt.c: Move to ... * gcc.c-torture/compile/xopt.c: ... here. * gcc.c-torture/unsorted/xor.c: Move to ... * gcc.c-torture/compile/xor.c: ... here. * gcc.c-torture/unsorted/xorn.c: Move to ... * gcc.c-torture/compile/xorn.c: ... here. * gcc.c-torture/unsorted/xp.c: Move to ... * gcc.c-torture/compile/xp.c: ... here. * gcc.c-torture/unsorted/xpp.c: Move to ... * gcc.c-torture/compile/xpp.c: ... here. * gcc.c-torture/unsorted/xs.c: Move to ... * gcc.c-torture/compile/xs.c: ... here. * gcc.c-torture/unsorted/xsh.c: Move to ... * gcc.c-torture/compile/xsh.c: ... here. * gcc.c-torture/unsorted/xz.c: Move to ... * gcc.c-torture/compile/xz.c: ... here. * gcc.c-torture/unsorted/xzz.c: Move to ... * gcc.c-torture/compile/xzz.c: ... here. From-SVN: r214793
Bernd Schmidt committed -
vxworksae.h (VXWORKSAE_TARGET_DIR): Rely on $WIND_BASE instead of designating a harcoded arbitrary home dir. * config/vxworksae.h (VXWORKSAE_TARGET_DIR): Rely on $WIND_BASE instead of designating a harcoded arbitrary home dir. (VXWORKS_ADDITIONAL_CPP_SPEC): Adjust callers. From-SVN: r214792
Olivier Hainque committed -
* gcc.c-torture/execute/20010129-1.c: Fix typo in -mtune. (abort, exit): Declare. From-SVN: r214791
Rainer Orth committed -
2014-09-01 Richard Biener <rguenther@suse.de> * tree-ssa-sccvn.h (copy_reference_ops_from_ref, copy_reference_ops_from_call, vn_nary_op_compute_hash, vn_reference_compute_hash, vn_reference_insert): Remove. (vn_reference_lookup_call): New function. * tree-ssa-sccvn.c (vn_reference_compute_hash, copy_reference_ops_from_ref, copy_reference_ops_from_call, vn_reference_insert, vn_nary_op_compute_hash): Make static. (create_reference_ops_from_call): Remove. (vn_reference_lookup_3): Properly update shared_lookup_references. (vn_reference_lookup_pieces): Assert that we updated shared_lookup_references properly. (vn_reference_lookup): Likewise. (vn_reference_lookup_call): New function. (visit_reference_op_call): Use it. Avoid re-building the reference ops. (visit_reference_op_load): Remove redundant lookup. (visit_reference_op_store): Perform special tail-merging work only when possibly doing tail-merging. (visit_use): Likewise. * tree-ssa-pre.c (compute_avail): Use vn_reference_lookup_call. From-SVN: r214787
Richard Biener committed -
PR target/62025 * sched-deps.c (add_or_update_dep_1): If ask_dependency_caches returned DEP_PRESENT, make sure to set DEP_MULTIPLE on present_dep. (find_inc): Revert 2014-08-13 change. From-SVN: r214786
Jakub Jelinek committed -
PR middle-end/61903 * expmed.c (store_fixed_bit_field_1): Shift UHWI 1 instead of HWI 1. Change the type of V to unsigned HOST_WIDE_INT. From-SVN: r214781
Marek Polacek committed -
2014-09-01 Thomas Preud'homme <thomas.preudhomme@arm.com> * tree-ssa-math-opts.c (struct symbolic_number): Clarify comment about the size of byte markers. (do_shift_rotate): Fix confusion between host, target and marker byte size. (verify_symbolic_number_p): Likewise. (find_bswap_or_nop_1): Likewise. (find_bswap_or_nop): Likewise. From-SVN: r214780
Thomas Preud'homme committed -
Makefile.in (FLAGS_TO_PASS): Propagate INSTALL, INSTALL_DATA, INSTALL_SCRIPT and INSTALL_PROGRAM as well. gcc/ * Makefile.in (FLAGS_TO_PASS): Propagate INSTALL, INSTALL_DATA, INSTALL_SCRIPT and INSTALL_PROGRAM as well. From-SVN: r214779
Olivier Hainque committed -
* config/gnu-user.h (LIBLSAN_EARLY_SPEC): Define. * gcc.c (LIBLSAN_SPEC, LIBLSAN_EARLY_SPEC): Follow LIBTSAN*_SPEC. (SANITIZER_EARLY_SPEC): Include LIBLSAN_EARLY_SPEC for -fsanitize=leak. From-SVN: r214778
Jakub Jelinek committed -
2014-09-01 Yury Gribov <y.gribov@samsung.com> PR sanitizer/61897 PR sanitizer/62140 gcc/ * asan.c (asan_mem_ref_get_end): Handle non-ptroff_t lengths. (build_check_stmt): Likewise. (instrument_strlen_call): Likewise. (asan_expand_check_ifn): Likewise and fix types. (maybe_cast_to_ptrmode): New function. gcc/testsuite/ * c-c++-common/asan/pr62140-1.c: New test. * c-c++-common/asan/pr62140-2.c: New test. From-SVN: r214777
Yury Gribov committed -
From-SVN: r214776
GCC Administrator committed
-
- 31 Aug, 2014 8 commits
-
-
From-SVN: r214773
Jan-Benedict Glaw committed -
This patch fixes a non-matching declaration, which lets G++ 4.8.1 (as of Debian's g++ package) barf: g++ -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -fno-common -DHAVE_CONFIG_H -I. -I. -I/home/vaxbuild/repos/gcc/gcc -I/home/vaxbuild/repos/gcc/gcc/. -I/home/vaxbuild/repos/gcc/gcc/../include -I/home/vaxbuild/repos/gcc/gcc/../libcpp/include -I/home/vaxbuild/repos/gcc/gcc/../libdecnumber -I/home/vaxbuild/repos/gcc/gcc/../libdecnumber/dpd -I../libdecnumber -I/home/vaxbuild/repos/gcc/gcc/../libbacktrace -o mcore.o -MT mcore.o -MMD -MP -MF ./.deps/mcore.TPo /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c: In function ‘const char* output_inline_const(machine_mode, rtx_def**)’: /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1216:82: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tnot\t%s\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1216:82: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1219:87: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\taddi\t%s,%%2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1219:87: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1222:87: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tsubi\t%s,%%2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1222:87: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1226:88: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\trsubi\t%s,%%2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1226:88: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1229:89: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tbseti\t%s,%%P2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1229:89: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1232:89: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tbclri\t%s,%%Q2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1232:89: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1235:88: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\trotli\t%s,%%2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1235:88: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1238:87: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tlsli\t%s,%%2\t// %ld 0x%lx", load_op, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1238:87: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1241:94: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 6 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tixh\t%s,%s\t// %ld 0x%lx", load_op, dst_fmt, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1241:94: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1244:94: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 6 has type ‘long long int’ [-Wformat=] sprintf (buf, "%s\n\tixw\t%s,%s\t// %ld 0x%lx", load_op, dst_fmt, dst_fmt, value, value); ^ /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:1244:94: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘long long int’ [-Wformat=] /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c: At global scope: /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:100:19: warning: ‘int try_constant_tricks(long int, long long int*, long long int*)’ used but never defined [enabled by default] static int try_constant_tricks (long, HOST_WIDE_INT *, HOST_WIDE_INT *); ^ [...] g++ -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -fno-common -DHAVE_CONFIG_H -static-libstdc++ -static-libgcc -o cc1 c/c-lang.o c-family/stub-objc.o attribs.o c/c-errors.o c/c-decl.o c/c-typeck.o c/c-convert.o c/c-aux-info.o c/c-objc-common.o c/c-parser.o c/c-array-notation.o c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o c-family/c-semantics.o c-family/c-ada-spec.o c-family/c-cilkplus.o c-family/array-notation-common.o c-family/cilk.o c-family/c-ubsan.o default-c.o \ cc1-checksum.o libbackend.a main.o tree-browser.o libcommon-target.a libcommon.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a libcommon.a ../libcpp/libcpp.a ../libbacktrace/.libs/libbacktrace.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -lmpc -lmpfr -lgmp -rdynamic -ldl -L../zlib -lz libbackend.a(mcore.o): In function `mcore_const_ok_for_inline': /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:751: undefined reference to `try_constant_tricks(long, long long*, long long*)' libbackend.a(mcore.o): In function `mcore_const_ok_for_inline(long long)': /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:751: undefined reference to `try_constant_tricks(long, long long*, long long*)' libbackend.a(mcore.o): In function `mcore_const_trick_uses_not(long long)': /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:761: undefined reference to `try_constant_tricks(long, long long*, long long*)' libbackend.a(mcore.o): In function `mcore_const_ok_for_inline': /home/vaxbuild/repos/gcc/gcc/config/mcore/mcore.c:751: undefined reference to `try_constant_tricks(long, long long*, long long*)' collect2: error: ld returned 1 exit status make[1]: *** [cc1] Error 1 make[1]: Leaving directory `/home/vaxbuild/build/mcore-elf/build-gcc/gcc' make: *** [all-gcc] Error 2 This patch fixes only the wrong declaration of try_constant_tricks(). 2014-09-01 Jan-Benedict Glaw <jbglaw@lug-owl.de> * config/mcore/mcore.c (try_constant_tricks): Fix declaration. From-SVN: r214772
Jan-Benedict Glaw committed -
re PR fortran/62309 (-fno-automatic with -finit-local prevents initialization of automatics in recursive functions) 2014-08-31 Fritz Reese <Reese-Fritz@zai.com> PR fortran/62309 * resolve.c (apply_default_init_local): Don't treat variables in RECURSIVE procedures as saved. 2014-08-31 Fritz Reese <Reese-Fritz@zai.com> Tobias Burnus <burnus@net-b.de> PR fortran/62309 * gcc/testsuite/gfortran.dg/auto_save_2.f90: New. Co-Authored-By: Tobias Burnus <burnus@net-b.de> From-SVN: r214771
Fritz Reese committed -
PR c++/62302 * optimize.c (cdtor_comdat_group): Just look at the DECL_ASSEMBLER_NAME of the 'tors. From-SVN: r214770
Jason Merrill committed -
From-SVN: r214769
Gerald Pfeifer committed -
From-SVN: r214768
Gerald Pfeifer committed -
2014-08-31 Tobias Burnus <burnus@net-b.de> gcc/fortran/ * trans-decl.c (gfc_build_builtin_function_decls): Add may_require_tmp dummy argument. * trans-intrinsic.c (gfc_conv_intrinsic_caf_get, conv_caf_send): Handle may_require_tmp argument. (gfc_conv_intrinsic_function): Update call. * gfortran.texi (_gfortran_caf_send, _gfortran_caf_get, _gfortran_caf_sendget): Update interface description. gcc/testsuite/ * gfortran.dg/coarray_lib_comm_1.f90: New. libgfortran/ * caf/libcaf.h (_gfortran_caf_send, _gfortran_caf_get, _gfortran_caf_sendget): Update prototype. * caf/single.c (_gfortran_caf_send, _gfortran_caf_get, _gfortran_caf_sendget): Handle may_require_tmp. From-SVN: r214764
Tobias Burnus committed -
From-SVN: r214763
GCC Administrator committed
-
- 30 Aug, 2014 4 commits
-
-
2014-08-30 Andrew Pinski <apinski@cavium.com> * gcc.c-torture/execute/20140828-1.c: New testcase. From-SVN: r214760
Andrew Pinski committed -
From-SVN: r214759
Tobias Burnus committed -
2014-08-30 Tobias Burnus <burnus@net-b.de> * trans.h (gfc_caf_get_image_index, gfc_get_caf_token_offset): New prototypes. * trans-expr.c (gfc_caf_get_image_index): Moved from trans-intrinsic.c and renamed. (gfc_get_caf_token_offset) Ditto; support offset = NULL with early return. * trans-intrinsic.c (get_caf_token_offset, caf_get_image_index): Moved to trans-expr. (gfc_conv_intrinsic_caf_get, conv_caf_send, conv_intrinsic_atomic_op, conv_intrinsic_atomic_ref, conv_intrinsic_atomic_cas): Update callers. From-SVN: r214758
Tobias Burnus committed -
2014-08-30 Tobias Burnus <burnus@net-b.de> PR fortran/62278 PR fortran/44735 PR fortran/60593 * dependency.c (gfc_check_dependency): Allow for optimizations in the pointer-alias check. From-SVN: r214757
Tobias Burnus committed
-