aboutsummaryrefslogtreecommitdiff
path: root/gcc
AgeCommit message (Collapse)AuthorFilesLines
2007-12-04omp-low.c (lookup_decl_in_outer_ctx): Allow calling this with !ctx->is_nested.Jakub Jelinek2-14/+15
* omp-low.c (lookup_decl_in_outer_ctx): Allow calling this with !ctx->is_nested. (maybe_lookup_decl_in_outer_ctx): Look up in outer contexts even if !ctx->is_nested. (lower_copyprivate_clauses, lower_send_clauses, lower_send_shared_vars): Call lookup_decl_in_outer_ctx unconditionally. * testsuite/libgomp.c/private-1.c: New test. From-SVN: r130590
2007-12-03re PR middle-end/29749 (Missing byte swap optimizations)Jakub Jelinek4-0/+199
PR middle-end/29749 * fold-const.c (fold_binary) <case BIT_AND_EXPR>: Optimize (X << C1) & C2 into (X << C1) & (C2 | ((1 << C1) - 1)) and (X >> C1) & C2 into (X >> C1) & (C2 | ~((type) -1 >> C1)). (fold_binary) <case LSHIFT_EXPR, case RSHIFT_EXPR>: Optimize (X & C2) << C1 into (X << C1) & (C2 << C1) and (X & C2) >> C1 into (X >> C1) & (C2 >> C1) if that allows further optimizations. * gcc.dg/fold-rotate-1.c: New test. From-SVN: r130589
2007-12-03re PR tree-optimization/33453 (ICE in build2_stat, at tree.c:3110 with ↵Jakub Jelinek5-11/+41
-ftree-parallelize-loops=4 -ftree-vectorize) PR tree-optimization/33453 * tree-data-ref.c (split_constant_offset): Use POINTER_PLUS_EXPR for pointer addition. * tree-parloops.c (canonicalize_loop_ivs): Likewise. (separate_decls_in_loop_name): Copy DECL_GIMPLE_REG_P from var to var_copy. * gcc.c-torture/compile/20071203-1.c: New test. From-SVN: r130588
2007-12-03Fix date in ChangeLog.Bernd Schmidt1-1/+1
From-SVN: r130584
2007-12-03bfin.h (TARGET_CPU_CPP_BUILTINS): Define __FDPIC__ as necessary.Bernd Schmidt2-1/+9
* config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define __FDPIC__ as necessary. From-SVN: r130583
2007-12-03re PR ada/34287 (Simple Ada bug [Barnes' Silly])Robert Dewar6-1/+50
2007-12-03 Robert Dewar <dewar@adacore.com> Samuel Tardieu <sam@rfc1149.net> gcc/ada/ PR ada/34287 * sem_util.adb (Safe_To_Capture_Value): Do not capture values of variables declared in a library-level package. gcc/testsuite/gnat.dg/ PR ada/34287 * check_elaboration_code.adb: New test. * bug_elaboration_code.ads, bug_elaboration_code.adb: New support files. Co-Authored-By: Samuel Tardieu <sam@rfc1149.net> From-SVN: r130582
2007-12-03invoke.texi (fipa-cp, [...]): Add documentation.Razya Ladelsky2-1/+30
2007-12-03 Razya Ladelsky <razya@il.ibm.com> * doc/invoke.texi (fipa-cp, fipa-matrix-reorg): Add documentation. From-SVN: r130580
2007-12-03re PR middle-end/34317 (-fno-tree-store-copy-prop causes an ICE)Jakub Jelinek3-1/+9
PR middle-end/34317 * opts.c (common_handle_option): Handle OPT_ftree_store_copy_prop. * common.opt (ftree-store-copy-prop): Use the same help text as for other nop switches. From-SVN: r130579
2007-12-03Daily bump.GCC Administrator1-1/+1
From-SVN: r130577
2007-12-02re PR c++/34061 (ICE with template-template parameters and inheritance)Paolo Carlini4-1/+16
/cp 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34061 * pt.c (current_template_args): Use error_operand_p. /testsuite 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34061 * g++.dg/cpp0x/pr34061.C: New. From-SVN: r130573
2007-12-02Makefile.in: Add support for sh4-linux.Samuel Tardieu3-0/+183
gcc/ada/ * Makefile.in: Add support for sh4-linux. * system-linux-sh4.ads: New file. From-SVN: r130572
2007-12-02clean.adb (Clean_Library_Directory): Use Empty_String'Access intead of ↵Samuel Tardieu2-2/+7
Empty_String'Unchecked_Access. gcc/ada/ * clean.adb (Clean_Library_Directory): Use Empty_String'Access intead of Empty_String'Unchecked_Access. From-SVN: r130571
2007-12-02re PR c++/34273 (Broken diagnostic: 'tree_binfo' not supported by dump_decl)Paolo Carlini4-0/+19
/cp 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34273 * error.c (dump_decl): Handle TREE_BINFO. /testsuite 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34273 * g++.dg/other/error21.C: New. From-SVN: r130570
2007-12-02re PR fortran/34186 (dump-parse-tree: ICE for ts->cl->length, if ts->cl == NULL)Tobias Burnus2-2/+7
2007-12-02 Tobias Burnus <burnus@net-b.de> PR fortran/34186 * symbol.c (generate_isocbinding_symbol): Fix setting string length. From-SVN: r130569
2007-12-02Fix the direction of the scheduling window & Fix scheduling order within a rowRevital Eres5-51/+270
From-SVN: r130567
2007-12-02sh.md (cmpgeusi_t): Fix condition.Samuel Tardieu2-1/+5
gcc/ * config/sh/sh.md (cmpgeusi_t): Fix condition. From-SVN: r130566
2007-12-02Daily bump.GCC Administrator1-1/+1
From-SVN: r130564
2007-12-01ggc-common.c (dump_ggc_loc_statistics): Reset ggc_force_collect flag.Jan Hubicka2-0/+6
* ggc-common.c (dump_ggc_loc_statistics): Reset ggc_force_collect flag. From-SVN: r130560
2007-12-01re PR ada/33722 (putenv() is made posix-conformant on FreeBSD 7.x)Kostik Belousov2-3/+9
2007-12-01 Kostik Belousov <kostikbel@ukr.net> gcc/ada/ PR ada/33722 * env.c (__gnat_setenv): FreeBSD 7 has a POSIX conformant putenv() and its argument must not be free()ed. From-SVN: r130555
2007-12-01re PR c++/8171 (Cannot compare pointer to member function of base and ↵Ollie Wild4-2/+49
derived class) PR c++/8171 gcc/cp/ * typeck.c (build_binary_op): Add conversion of pointers to function members appearing as operands to the equality operators. gcc/testsuite/ * g++.dg/conversion/ptrmem9.C: New test. From-SVN: r130554
2007-12-01Daily bump.GCC Administrator1-1/+1
From-SVN: r130552
2007-11-30re PR libfortran/34291 (Segfault in io/list_read.c handling of end conditions)Jerry DeLisle2-0/+27
2007-11-30 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/34291 * gfortran.dg/namelist_41.f90: New test. From-SVN: r130549
2007-11-30Change bogus PR in ChangeLog (15803->15804)Samuel Tardieu2-2/+2
From-SVN: r130547
2007-11-30re PR preprocessor/32868 (Don't warn about redefinitions of ↵Tom Tromey2-0/+11
__STDC_FORMAT_MACROS) libcpp PR preprocessor/32868: * macro.c (_cpp_create_definition): Special case __STDC_FORMAT_MACROS. gcc/testsuite PR preprocessor/32868: * gcc.dg/cpp/pr32868.c: New file. From-SVN: r130544
2007-11-30re PR fortran/34248 (ICE on assumed length character function)Jerry DeLisle2-1/+6
2007-11-30 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR fortran/34248 * gfortran.dg/result_in_spec_3.f90: Add dg-option -std=gnu. From-SVN: r130542
2007-11-30re PR rtl-optimization/34171 (Segfault in df_chain_remove_problem with -O3 ↵Seongbae Park4-30/+73
on alpha) gcc/testsuite/ChangeLog: 2007-11-30 Martin Michlmayr <tbm@cyrius.com> PR rtl-optimization/34171 * gcc.dg/pr34171.c: New testcase. gcc/ChangeLog: 2007-11-30 Seongbae Park <seongbae.park@gmail.com> PR rtl-optimization/34171 * cfgrtl.c (update_bb_for_insn_chain): New function, refactored from update_bb_for_insn. (update_bb_for_insn): Call update_bb_for_insn. (rtl_merge_blocks, try_redirect_by_replacing_jump): Replace a loop with update_bb_for_insn_chain call. (cfg_layout_merge_blocks): Add a call to update_bb_for_insn_chain. Replace the for loop with a call to update_bb_for_insn_chain. From-SVN: r130539
2007-11-30pr34244.c: Fixed.Zdenek Dvorak2-65/+4
* gcc.dg/tree-ssa/pr34244.c: Fixed. From-SVN: r130536
2007-11-30re PR fortran/34133 (Bind(c,name="") should be rejected for dummies; F2008: ↵Tobias Burnus7-33/+199
allow bind(c) for internal procs) 2007-11-20 Tobias Burnus <burnus@net-b.de> PR fortran/34133 * match.h: Add bool allow_binding_name to gfc_match_bind_c. * decl.c * (match_attr_spec,gfc_match_bind_c_stmt,gfc_match_entry): Adjust accordingly. (gfc_match_bind_c): Add allow_binding_name argument, reject binding name for dummy arguments. (gfc_match_suffix,gfc_match_subroutine): Make use of allow_binding_name. 2007-11-20 Tobias Burnus <burnus@net-b.de> PR fortran/34133 * gfortran.dg/bind_c_usage_9.f03: Fixes; add -std=f2003. * gfortran.dg/bind_c_usage_11.f03: New. * gfortran.dg/bind_c_usage_12.f03: New. From-SVN: r130535
2007-11-30re PR fortran/34186 (dump-parse-tree: ICE for ts->cl->length, if ts->cl == NULL)Tobias Burnus4-0/+14
2007-11-30 Tobias Burnus <burnus@net-b.de> PR fortran/34186 * symbol.c (generate_isocbinding_symbol): Set string length. * dump-parse-tree.c (gfc_show_attr): Show BIND(C) attribute. * misc.c (gfc_basic_typename): Handle BT_VOID. From-SVN: r130534
2007-11-30re PR c++/34275 (Broken diagnostic: 'obj_type_ref' not supported by dump_expr)Jakub Jelinek4-0/+26
PR c++/34275 * error.c (dump_expr): Handle OBJ_TYPE_REF. * g++.dg/other/error20.C: New test. From-SVN: r130533
2007-11-30re PR fortran/34230 (Expressions of parameters evaluated with too high ↵Steven G. Kargl3-29/+46
precision) 2007-11-29 Steven G. Kargl <kargls@comcast.net> PR fortran/34230 * gfortran.dg/real_const_3.f90: Fix up for new range-check handling. From-SVN: r130532
2007-11-30re PR fortran/34230 (Expressions of parameters evaluated with too high ↵Steven G. Kargl3-6/+38
precision) 2007-11-29 Steven G. Kargl <kargls@comcast.net> PR fortran/34230 * fortran/arith.c (gfc_check_real_range): Set intermediate values to +-Inf and 0 when -fno-range-check is in effect. * fortran/invoke.texi: Improve -fno-range-check description. PR fortran/34203 * fortran/invoke.texi: Document the C escaped characters activated by -fbackslash. From-SVN: r130530
2007-11-30* config/vax/vax.h (ASM_FORMAT_PRIVATE_NAME): Remove. Use default.Ben Elliston2-8/+4
From-SVN: r130529
2007-11-30re PR tree-optimization/34244 (VRP/SCEV miscompiles Firefox)Zdenek Dvorak6-1/+191
PR tree-optimization/34244 * tree-vrp.c (adjust_range_with_scev): Clear scev cache. (record_numbers_of_iterations): New function. (execute_vrp): Cache the numbers of iterations of loops. * tree-scalar-evolution.c (scev_reset_except_niters): New function. (scev_reset): Use scev_reset_except_niters. * tree-scalar-evolution.h (scev_reset_except_niters): Declare. * gcc.dg/tree-ssa/pr34244.c: New test. From-SVN: r130527
2007-11-30Daily bump.GCC Administrator1-1/+1
From-SVN: r130525
2007-11-29re PR tree-optimization/33434 (inlining miscompilation)Jan Hubicka7-0/+121
PR tree-optimization/33434 * tree-inline.c (setup_one_parameter): If the value passed to a parameter is never used, don't set it up. * gcc.dg/pr33434-1.c: New test. * gcc.dg/pr33434-2.c: New test. * gcc.dg/pr33434-3.c: New test. * gcc.dg/pr33434-4.c: New test. From-SVN: r130521
2007-11-29re PR c++/34270 (ICE applying __decltype to ternary expression)Jakub Jelinek5-3/+31
PR c++/34270 * tree.c (lvalue_p_1) <case COND_EXPR>: Handle x ?: y in templates. * typeck.c (is_bitfield_expr_with_lowered_type) <case COND_EXPR>: Likewise. * g++.dg/template/cond7.C: New test. From-SVN: r130520
2007-11-29re PR c++/34267 (ICE applying __decltype to name of template class)Jakub Jelinek6-1/+54
PR c++/34267 PR c++/34268 * parser.c (cp_parser_decltype): Don't call finish_id_expression on ~type. * semantics.c (finish_decltype_type): Issue error on types, TYPE_DECLs and ~type early. * g++.dg/cpp0x/decltype7.C: New test. * g++.dg/cpp0x/decltype8.C: New test. From-SVN: r130519
2007-11-29re PR fortran/34248 (ICE on assumed length character function)Tobias Burnus4-1/+29
2007-11-29 Tobias Burnus <burnus@net-b.de> PR fortran/34248 * trans-decl.c (generate_dependency_declarations): Check for NULL pointers before accessing the string length. 2007-11-29 Tobias Burnus <burnus@net-b.de> PR fortran/34248 * gfortran.dg/result_in_spec_3.f90: New. From-SVN: r130517
2007-11-29re PR target/32130 (linking problems: multiple definition of `__DTOR_END__')Jakub Jelinek3-4/+10
PR target/32130 * config/rs6000/eabi-cn.asm (__DTOR_END__): Make it weak. * config/rs6000/sol-cn.asm (__DTOR_END__): Likewise. From-SVN: r130516
2007-11-29[multiple changes]Paolo Bonzini2-1/+6
2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * config-ml.in: Robustify against white space in absolute file names. * config-ml.in (multi-clean): Substitute ${Makefile}. Remove superfluous ${Makefile} in list. libgomp: 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> Paolo Bonzini <bonzini@gnu.org> * Makefile.am: Use space as vpath separator. Use 'vpath %' instead of 'VPATH ='. * Makefile.in: Regenerate. gcc: 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> * Makefile.in: Use separate vpath lines for each path. libstdc++-v3: 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> * src/Makefile.am: Use separate vpath lines for each path. M libgomp/Makefile.in M libgomp/ChangeLog M libgomp/Makefile.am M gcc/ChangeLog M gcc/Makefile.in M libstdc++-v3/src/Makefile.in M libstdc++-v3/src/Makefile.am M libstdc++-v3/ChangeLog M ChangeLog From-SVN: r130514
2007-11-29re PR fortran/34262 (MVBITS does not work for arrays)Tobias Burnus5-2/+51
2007-11-29 Tobias Burnus <burnus@net-b.de> PR fortran/34262 * intrinsic.c (gfc_get_intrinsic_sub_symbol): Add comment. (gfc_intrinsic_sub_interface): Copy elemental state if needed. * iresolve.c (gfc_resolve_mvbits): Mark procedure as elemental. 2007-11-29 Tobias Burnus <burnus@net-b.de> PR fortran/34262 * gfortran.dg/mvbits_3.f90: New. From-SVN: r130513
2007-11-29decl.c (make_packable_type): Retrieve the real name of the type.Eric Botcazou2-5/+16
* decl.c (make_packable_type): Retrieve the real name of the type. (maybe_pad_type): Simplify similar code. From-SVN: r130512
2007-11-29* SERVICE: Update URL.Ben Elliston2-1/+5
From-SVN: r130510
2007-11-29target-supports.exp (check_effective_target_mips_soft_float): Delete.Bob Wilson4-9/+18
* lib/target-supports.exp (check_effective_target_mips_soft_float): Delete. (check_effective_target_hard_float): New. * gcc.dg/var-expand1.c: Skip for targets without FPU instructions. * gcc.dg/pr30957-1.c: Likewise. From-SVN: r130509
2007-11-29* zh_CN.po: Update.Joseph Myers2-96/+96
From-SVN: r130508
2007-11-29Daily bump.GCC Administrator1-1/+1
From-SVN: r130504
2007-11-28Fix PR # in gcc/ada/ChangeLog and gcc/testsuite/ChangeLog (17317->17318)Samuel Tardieu2-2/+2
From-SVN: r130499
2007-11-28re PR ada/22559 (Bug box, Program_Error at sinput.adb:404, derived ↵Samuel Tardieu5-2/+24
fixed-point type) gcc/ada/ PR ada/22559 * sem_ch3.adb (Build_Derived_Numeric_Type): Do not set RM_Size on a derived ordinary fixed point type. * sem_ch13.adb (Analyze_Attribute_Definition_Clause): Recompute RM_Size when a Small clause is found. gcc/testsuite/ PR ada/22559 * gnat.dg/specs/delta_small.ads: New test. From-SVN: r130498
2007-11-28re PR ada/32792 (Assert_Failure sinfo.adb:1730)Samuel Tardieu4-0/+22
gcc/ada/ PR ada/32792 * sem_attr.adb (Analyze_Attribute, Attribute_Integer_Value clause): Signal an error when attribute argument is a fixed-point value of an unknown type. gcc/testsuite/ PR ada/32792 * gnat.dg/specs/integer_value.ads: New test. From-SVN: r130497